GDAL: Connection RefCount incremented for internal worker objects
— at Version 5
When the GDAL provider connection is created and Open() is called, the resulting RefCount should be 1. With the GDAL provider the RefCount is incremented to 3. These additional increments are caused during the Open process as the connection object is passed, via method parameters, to several internal worker objects (including FdoRfpClassData and FdoRfpGeoBandRaster) who in turn call AddRef on the connection. When dealing with internal worker objects, whose lifespan is guaranteed to be the lifespan to the connection, these types of object should only hold soft references to the connection object so that a circular dependency does not occur. The solution to this issue is to not AddRef the connection when storing the connection pointer as class data.
Change History
(5)
Description: |
modified (diff)
|
Description: |
modified (diff)
|
Summary: |
GDAL: Connection RefCount incremented for Internal woker objects → GDAL: Connection RefCount incremented for internal worker objects
|
Description: |
modified (diff)
|