]> git.sesse.net Git - vlc/commitdiff
python bindings, vlc_internal.c: use PyObject_DEL (patch by Jan David Mol)
authorOlivier Aubert <olivier.aubert@liris.cnrs.fr>
Tue, 29 May 2007 09:48:28 +0000 (09:48 +0000)
committerOlivier Aubert <olivier.aubert@liris.cnrs.fr>
Tue, 29 May 2007 09:48:28 +0000 (09:48 +0000)
bindings/python/vlc_internal.c

index 53c8d34358dfe7684cc7356aa46d3b1c3e43bf61..4b8d24d220836775bdd0187b86b0805361c186e2 100644 (file)
@@ -122,7 +122,7 @@ static void
 vlcObject_dealloc( PyObject *self )
 {
     vlcObject_release( self, NULL );
-    PyMem_DEL( self );
+    PyObject_DEL( self );
 }
 
 static PyObject *