summaryrefslogtreecommitdiffstats
path: root/cython/property_list_client.pxi
diff options
context:
space:
mode:
authorGravatar Bryan Forbes2010-04-13 17:12:50 -0500
committerGravatar Martin Szulecki2012-03-20 23:25:55 +0100
commit7275b8e8b1134c85d6f4b694ad6f515b3a6dace9 (patch)
tree3ab34f9097528839c2c78b70b659ba7d90cf736c /cython/property_list_client.pxi
parent360b7316b520baeae11c98cbd6423029141c2137 (diff)
downloadlibimobiledevice-7275b8e8b1134c85d6f4b694ad6f515b3a6dace9.tar.gz
libimobiledevice-7275b8e8b1134c85d6f4b694ad6f515b3a6dace9.tar.bz2
Use stdlib.free and plist.plist_free.
Diffstat (limited to 'cython/property_list_client.pxi')
-rw-r--r--cython/property_list_client.pxi2
1 files changed, 1 insertions, 1 deletions
diff --git a/cython/property_list_client.pxi b/cython/property_list_client.pxi
index c137b34..718b07f 100644
--- a/cython/property_list_client.pxi
+++ b/cython/property_list_client.pxi
@@ -11,7 +11,7 @@ cdef class PropertyListClient(Base):
self.handle_error(err)
except BaseError, e:
if c_node != NULL:
- plist_free(c_node)
+ plist.plist_free(c_node)
raise
return plist.plist_t_to_node(c_node)