l dot
git-svn-id: http://svn.osgeo.org/postgis/branches/pgis_1_0@1983
b70326c6-7e19-0410-871a-
916f4a2858ee
- 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
}
// 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:
/**********************************************************************
* $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
*