Skip to content
This repository has been archived by the owner on Jun 1, 2022. It is now read-only.

Commit

Permalink
Prepare for 1.6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwald committed Oct 30, 2015
1 parent c29ae0d commit a1d643c
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
1.6.7 2015-XX-XX
1.6.7 2015-10-30

* Fixed a MSVC parser stack overflow when parsing `regionName.c` and
`timeZone.c`. Fix by elliotlo. GitHub #64.
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dnl AM_CONFIG_HEADER(config.h)

AC_PREREQ([2.65])
AC_INIT([GeoIP], [1.6.6],[[email protected]],[GeoIP])
AC_INIT([GeoIP], [1.6.7],[[email protected]],[GeoIP])
AC_CONFIG_AUX_DIR([.])
AC_CONFIG_SRCDIR([libGeoIP/GeoIP.c])
AC_CONFIG_MACRO_DIR([m4])
Expand Down
2 changes: 1 addition & 1 deletion libGeoIP/regionName.c
Original file line number Diff line number Diff line change
Expand Up @@ -9785,7 +9785,7 @@ const char * GeoIP_region_name_by_code(const char * country_code,const char * re
&& ((region_code[1] >= 48) && (region_code[1] < (48 + 10)))
) {

/* only numbers, that shorten the large switch statements */
/* only numbers, that shortens the large switch statements */
region_code2 = (region_code[0] - 48) * 10 + region_code[1] - 48;
}

Expand Down
Empty file modified regioncode/generate_regionName.pl
100644 → 100755
Empty file.
Empty file modified timezone/generate_timeZone.pl
100644 → 100755
Empty file.

0 comments on commit a1d643c

Please sign in to comment.