mirror of https://github.com/python/cpython
Plug memory leak (variable names in code objects were being leaked!)
This commit is contained in:
parent
9a97d6ce53
commit
0a8626eb88
|
@ -468,6 +468,7 @@ r_object(p)
|
|||
XDECREF(code);
|
||||
XDECREF(consts);
|
||||
XDECREF(names);
|
||||
XDECREF(varnames);
|
||||
XDECREF(filename);
|
||||
XDECREF(name);
|
||||
|
||||
|
|
Loading…
Reference in New Issue