diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-10-04 16:58:34 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-10-04 16:58:34 +0200 |
| commit | bbaa2f9da7a2df23dcb45a5c59bbd5ef9d65c392 (patch) | |
| tree | d4f59944de41d97ae508ed847858f13018c65788 /python/tag.cc | |
| parent | 05ac4479d4a37ca55e892c588bcb217fa21ba20a (diff) | |
| parent | 722f0d8b1a276f2f069fc090db2365ae2659fac9 (diff) | |
| download | python-apt-bbaa2f9da7a2df23dcb45a5c59bbd5ef9d65c392.tar.gz | |
* fix incorrect PyMem_DEL() code
Diffstat (limited to 'python/tag.cc')
| -rw-r--r-- | python/tag.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tag.cc b/python/tag.cc index 883a8eab..d0d862c9 100644 --- a/python/tag.cc +++ b/python/tag.cc @@ -68,7 +68,7 @@ void TagFileFree(PyObject *Obj) Self->Object.~pkgTagFile(); Self->Fd.~FileFd(); Py_DECREF(Self->File); - PyMem_DEL(Obj); + PyObject_DEL(Obj); } /*}}}*/ |
