- 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.101 2005/10/21 11:33:55 strk
+ * Applied patch by Lars Roessiger handling numerical values with a trailing decima
+ * l dot
+ *
* Revision 1.100 2005/10/13 13:40:20 strk
* Fixed return code from shp2pgsql
*