Browse Source

Fix a possible crash due to PyType_FromSpecWithBases() (GH-10304)

If the PyObject_MALLOC() call failed in PyType_FromSpecWithBases(),
PyObject_Free() would be called on a static string in type_dealloc().
pull/13226/head
Zackery Spytz 7 years ago
committed by Petr Viktorin
parent
commit
0613c1e481
  1. 1
      Objects/typeobject.c

1
Objects/typeobject.c

@ -2995,6 +2995,7 @@ PyType_FromSpecWithBases(PyType_Spec *spec, PyObject *bases)
size_t len = strlen(old_doc)+1;
char *tp_doc = PyObject_MALLOC(len);
if (tp_doc == NULL) {
type->tp_doc = NULL;
PyErr_NoMemory();
goto fail;
}

Loading…
Cancel
Save