Commit fa114305 authored by Justin Bronn's avatar Justin Bronn
Browse files

[1.1.X] No longer use the deprecated GEOS C API function `GEOSGeomFromWKB_buf`...

[1.1.X] No longer use the deprecated GEOS C API function `GEOSGeomFromWKB_buf` when unpickling `GEOSGeometry` objects.

Backport of r12898 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12899 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 7a7b9a04
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -142,7 +142,7 @@ class GEOSGeometry(GEOSBase, ListMixin):
    def __setstate__(self, state):
        # Instantiating from the tuple state that was pickled.
        wkb, srid = state
        ptr = capi.from_wkb(wkb, len(wkb))
        ptr = wkb_r.read(buffer(wkb))
        if not ptr: raise GEOSException('Invalid Geometry loaded from pickled state.')
        self.ptr = ptr
        self._post_init(srid)