gc types needs to be allocated as such (closes #29398)

This commit is contained in:
Benjamin Peterson 2017-01-31 23:31:02 -08:00
parent 34e7e2ecb1
commit ec977c3028
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ static XxoObject *
newXxoObject(PyObject *arg) newXxoObject(PyObject *arg)
{ {
XxoObject *self; XxoObject *self;
self = PyObject_New(XxoObject, (PyTypeObject*)Xxo_Type); self = PyObject_GC_New(XxoObject, (PyTypeObject*)Xxo_Type);
if (self == NULL) if (self == NULL)
return NULL; return NULL;
self->x_attr = NULL; self->x_attr = NULL;