Changes between Initial Version and Version 1 of Ticket #6312


Ignore:
Timestamp:
Jan 15, 2016, 3:34:57 AM (9 years ago)
Author:
dsogari
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #6312 – Description

    initial v1  
    11Perhaps this is not a naturally ocurring use case scenario, but the SetGeomField member function of OGRFeature that takes the field index as parameter is not robust, in that it does not check whether the old geometry pointer is the same as the new one. In the case that they are the same ({{{papoGeometries[iField] == poGeomIn}}}) the call of the {{{clone()}}} method (line 744 of ogrfeature.cpp in trunk) causes memory access violation, because the geometry's destructor is executed in the preceding delete statement (line 741 of ogrfeature.cpp).
    22
    3 Fix: save papoGeometries[iField] to a temp variable and delete it afterwards
     3Fix: save {{{papoGeometries[iField]}}} to a temp variable and delete it afterwards
    44
    55{{{