diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-10-04 16:54:00 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-10-04 16:54:00 +0200 |
| commit | 9e5bfd3bc00a88094e6d16dcce6f50a0f51a5ee6 (patch) | |
| tree | 5aa80a31c01de478799a040347632d5eac9a68c3 | |
| parent | 722f0d8b1a276f2f069fc090db2365ae2659fac9 (diff) | |
| download | python-apt-9e5bfd3bc00a88094e6d16dcce6f50a0f51a5ee6.tar.gz | |
* python/tag.cc:
- fix another PyMem_DEL() -> PyObject_DEL() error
| -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); } /*}}}*/ |
