From 7275b8e8b1134c85d6f4b694ad6f515b3a6dace9 Mon Sep 17 00:00:00 2001 From: Bryan Forbes Date: Tue, 13 Apr 2010 17:12:50 -0500 Subject: Use stdlib.free and plist.plist_free. --- cython/property_list_client.pxi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cython/property_list_client.pxi') 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) -- cgit v1.1-32-gdbae