Add a missed PyErr_NoMemory() in symtable_new(). (GH-10576)

This missed PyErr_NoMemory() could cause a SystemError when calling
_symtable.symtable().
This commit is contained in:
Zackery Spytz 2018-11-16 08:58:55 -07:00 committed by Serhiy Storchaka
parent 90d0cfb222
commit ad65f15581

View file

@ -210,8 +210,10 @@ symtable_new(void)
struct symtable *st;
st = (struct symtable *)PyMem_Malloc(sizeof(struct symtable));
if (st == NULL)
if (st == NULL) {
PyErr_NoMemory();
return NULL;
}
st->st_filename = NULL;
st->st_blocks = NULL;