Commit 6b50c63a authored by Georg Brandl's avatar Georg Brandl

Correctly allocate complex types with tp_alloc. (bug #1498638)

parent 85ac8508
...@@ -188,7 +188,7 @@ complex_subtype_from_c_complex(PyTypeObject *type, Py_complex cval) ...@@ -188,7 +188,7 @@ complex_subtype_from_c_complex(PyTypeObject *type, Py_complex cval)
{ {
PyObject *op; PyObject *op;
op = PyType_GenericAlloc(type, 0); op = type->tp_alloc(type, 0);
if (op != NULL) if (op != NULL)
((PyComplexObject *)op)->cval = cval; ((PyComplexObject *)op)->cval = cval;
return op; return op;
...@@ -1023,7 +1023,7 @@ PyTypeObject PyComplex_Type = { ...@@ -1023,7 +1023,7 @@ PyTypeObject PyComplex_Type = {
0, /* tp_descr_set */ 0, /* tp_descr_set */
0, /* tp_dictoffset */ 0, /* tp_dictoffset */
0, /* tp_init */ 0, /* tp_init */
0, /* tp_alloc */ PyType_GenericAlloc, /* tp_alloc */
complex_new, /* tp_new */ complex_new, /* tp_new */
PyObject_Del, /* tp_free */ PyObject_Del, /* tp_free */
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment