Commit aec86cd1 authored by Christian Heimes's avatar Christian Heimes

Closed reference leak of variable 'k' in function ste_new which wasn't decrefed in error cases

parent ef6deede
......@@ -28,7 +28,7 @@ ste_new(struct symtable *st, identifier name, _Py_block_ty block,
void *key, int lineno, int col_offset)
{
PySTEntryObject *ste = NULL;
PyObject *k;
PyObject *k = NULL;
k = PyLong_FromVoidPtr(key);
if (k == NULL)
......@@ -83,6 +83,7 @@ ste_new(struct symtable *st, identifier name, _Py_block_ty block,
return ste;
fail:
Py_XDECREF(k);
Py_XDECREF(ste);
return NULL;
}
......
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