PostGIS 1.0.5CVS
- New "Reporting Bugs" chapter in manual
+ - Segfault fix in shp2pgsql (utf8 encoding)
PostGIS 1.0.4
2005/09/09
*optr='\0';
#ifdef USE_ICONV
- free(str);
+ if ( encoding ) free(str);
#endif
return result;
*optr='\0';
#ifdef USE_ICONV
- free(str);
+ if ( encoding ) free(str);
#endif
return result;
/**********************************************************************
* $Log$
+ * Revision 1.97 2005/09/30 08:59:29 strk
+ * Fixed release of stack memory occurring when shp2pgsql is compiled with USE_ICONV defined, an attribute value needs to be escaped and no -W is used
+ *
* Revision 1.96 2005/08/29 22:36:25 strk
* Removed premature object destruction in InsertLineString{WKT,} causing segfault
*