]> granicus.if.org Git - postgis/commitdiff
Applied patch by Lars Roessiger handling numerical values with a trailing decima
authorSandro Santilli <strk@keybit.net>
Fri, 21 Oct 2005 11:34:25 +0000 (11:34 +0000)
committerSandro Santilli <strk@keybit.net>
Fri, 21 Oct 2005 11:34:25 +0000 (11:34 +0000)
l dot

git-svn-id: http://svn.osgeo.org/postgis/branches/pgis_1_0@1983 b70326c6-7e19-0410-871a-916f4a2858ee

CHANGES
loader/shp2pgsql.c

diff --git a/CHANGES b/CHANGES
index 7075810093b4633dd9924a13c1e42ef5a1937bf3..c092e442776c42d5070fe1fd73e578322a95d785 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -3,6 +3,7 @@ PostGIS 1.0.5CVS
        - Segfault fix in shp2pgsql (utf8 encoding)
        - Fixed computation of null values fraction in analyzer
        - Fixed return code of shp2pgsql
+       - Fixed handling of trailing dots in dbf numerical attributes
 
 PostGIS 1.0.4
 2005/09/09
index c069d103c3bae041c6674a1a28ca54f788a74e11..0d0388e55e03f5eaaa8a195211d8bd3eef588734 100644 (file)
@@ -312,6 +312,7 @@ Insert_attributes(DBFHandle hDBFHandle, int row)
                }
               // pg_atoi() does not do this
               if ( val[0] == '\0' ) { val[0] = '0'; val[1] = '\0'; }
+              if ( val[strlen(val)-1] == '.' ) val[strlen(val)-1] = '\0';
                break;
             case FTString:
             case FTLogical:
@@ -1660,6 +1661,10 @@ utf8 (const char *fromcode, char *inputbuf)
 
 /**********************************************************************
  * $Log$
+ * Revision 1.88.2.10  2005/10/21 11:34:25  strk
+ * Applied patch by Lars Roessiger handling numerical values with a trailing decima
+ * l dot
+ *
  * Revision 1.88.2.9  2005/10/13 13:40:15  strk
  * Fixed return code from shp2pgsql
  *