sorry.
diff -u python-cdb-0.32/debian/changelog python-cdb-0.32/debian/changelog --- python-cdb-0.32/debian/changelog +++ python-cdb-0.32/debian/changelog @@ -1,3 +1,10 @@ +python-cdb (0.32-5.3) unstable; urgency=low + + * NMU + * Fix memory allocations (Closes: #468993) + + -- Thomas Viehmann <[EMAIL PROTECTED]> Tue, 04 Mar 2008 22:41:01 +0100 + python-cdb (0.32-5.2) unstable; urgency=low * NMU --- python-cdb-0.32.orig/src/cdbmodule.c +++ python-cdb-0.32/src/cdbmodule.c @@ -655,7 +655,7 @@ cdb_free(&self->c); - PyMem_DEL(self); + PyObject_Del(self); } static PyObject *

