gc types needs to be allocated as such (closes #29398)
This commit is contained in:
parent
34e7e2ecb1
commit
ec977c3028
|
@ -31,7 +31,7 @@ static XxoObject *
|
|||
newXxoObject(PyObject *arg)
|
||||
{
|
||||
XxoObject *self;
|
||||
self = PyObject_New(XxoObject, (PyTypeObject*)Xxo_Type);
|
||||
self = PyObject_GC_New(XxoObject, (PyTypeObject*)Xxo_Type);
|
||||
if (self == NULL)
|
||||
return NULL;
|
||||
self->x_attr = NULL;
|
||||
|
|
Loading…
Reference in New Issue