diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-12-29 15:58:12 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2011-01-01 02:54:05 +0100 |
commit | 4350e0c3c99fedab99ab1cc680e9d8fe555162e9 (patch) | |
tree | ac3a67038c9b74e395f5f2ede8822200b7313baa /lib/talloc | |
parent | 9529fdab26270f4d35119e87f9ca8a7693c24a3f (diff) | |
download | samba-4350e0c3c99fedab99ab1cc680e9d8fe555162e9.tar.gz samba-4350e0c3c99fedab99ab1cc680e9d8fe555162e9.tar.bz2 samba-4350e0c3c99fedab99ab1cc680e9d8fe555162e9.zip |
s4-python: Properly call PyObject_Del from all destructors.
Diffstat (limited to 'lib/talloc')
-rw-r--r-- | lib/talloc/pytalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/talloc/pytalloc.c b/lib/talloc/pytalloc.c index 6ddcac988b..457358ed8f 100644 --- a/lib/talloc/pytalloc.c +++ b/lib/talloc/pytalloc.c @@ -94,7 +94,7 @@ static void py_talloc_dealloc(PyObject* self) py_talloc_Object *obj = (py_talloc_Object *)self; assert(talloc_unlink(NULL, obj->talloc_ctx) != -1); obj->talloc_ctx = NULL; - self->ob_type->tp_free(self); + PyObject_Del(self); } /** |