Frank, Ok, I'm cool with that, I just wanted to make sure it wasn't a bug.
Thanks for the quick response! Best regards, Martin -----Original Message----- From: fwarmer...@gmail.com [mailto:fwarmer...@gmail.com] On Behalf Of Frank Warmerdam Sent: Thursday, January 12, 2012 8:17 PM To: Martin Chapman Cc: gdal-dev@lists.osgeo.org Subject: Re: [gdal-dev] Possible bug in OGRSpatialReference:: importFromWkt() On Thu, Jan 12, 2012 at 6:30 PM, Martin Chapman <chapm...@pixia.com> wrote: > Frank, > > > > I think there is a bug in OGRSpatialReference::importFromWkt(). I did > the > following: > > > > char* wkt = NULL; > > sourceSRS.exportToWkt(&wkt); > > targetSRS.importFromWkt(&wkt); > > CPLFree(wkt); > > > > It blows up on the CPLFree(). Why you might ask. Because it looks > like the > importFromWkt() increments the pointer as its parsing it so by the > time it returns the pointer you passed in no longer points to the > beginning of the array of char* pointers. Instead, it points to the end of the memory block. > Shouldnt you be assigning a temp pointer to the start of the array > before you start parsing it? If you made it a const char** parameter > this wouldnt happen. Martin, The behavior is intentional though quite possibly ill advised. The original intent was that the modified pointer after the import would indicate what had not been consumed by the import parser. But in practice this has just make for a messy to use API and generally speaking callers have to setup their own temporary pointer for the import. Best regards, -- ---------------------------------------+-------------------------------- ---------------------------------------+------ I set the clouds in motion - turn up | Frank Warmerdam, warmer...@pobox.com light and sound - activate the windows | http://pobox.com/~warmerdam and watch the world go round - Rush | Geospatial Software Developer _______________________________________________ gdal-dev mailing list gdal-dev@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/gdal-dev