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:
committed by
Serhiy Storchaka
parent
90d0cfb222
commit
ad65f15581
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user