17 lines
477 B
Plaintext
17 lines
477 B
Plaintext
$OpenBSD: patch-src_pyoggstreamstate_c,v 1.2 2011/05/31 09:30:43 dcoppa Exp $
|
|
|
|
Fix memory allocation/deallocation for Python 2.5 and above
|
|
(from Debian's patchset for python-ogg)
|
|
|
|
--- src/pyoggstreamstate.c.orig Mon Oct 7 01:04:57 2002
|
|
+++ src/pyoggstreamstate.c Tue Jun 1 15:38:26 2010
|
|
@@ -77,7 +77,7 @@ static void
|
|
py_ogg_stream_state_dealloc(PyObject *self)
|
|
{
|
|
ogg_stream_clear(PY_OGG_STREAM(self));
|
|
- PyMem_DEL(self);
|
|
+ PyObject_Del(self);
|
|
}
|
|
|
|
static PyObject*
|