Closed GoogleCodeExporter closed 8 years ago
The fix seems to be just:
diff -urN adns-python-1.2.0.org/adnsmodule.c adns-python-1.2.0/adnsmodule.c
--- adns-python-1.2.0.org/adnsmodule.c 2006-12-31 18:25:29.000000000 +0100
+++ adns-python-1.2.0/adnsmodule.c 2007-01-08 13:18:16.623624500 +0100
@@ -719,7 +719,7 @@
adns_finish(self->state);
Py_END_ALLOW_THREADS;
Py_INCREF(Py_None);
- PyMem_DEL(self);
+ PyObject_Free(self);
}
static char ADNS_Statetype__doc__[] =
More info at http://docs.python.org/whatsnew/ports.html, obmalloc part.
Original comment by ar...@pld-linux.org
on 8 Jan 2007 at 12:19
adns-python was originally written for Python-1.5. There are a number of Python
API
updates that I need to do to make it truly compatible with Python-2.5. I am
somewhat
surprised that PyMem_DEL is in there, though.
Original comment by farcep...@gmail.com
on 8 Jan 2007 at 2:50
Should be fixed shortly
Original comment by farcep...@gmail.com
on 27 Jan 2007 at 7:05
Fixed in r19
Original comment by farcep...@gmail.com
on 27 Jan 2007 at 7:15
Original issue reported on code.google.com by
ar...@pld-linux.org
on 8 Jan 2007 at 11:30