Commit 310f8144 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

parents 45565796 837e53a7
......@@ -24,7 +24,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)
......@@ -79,6 +79,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