Commit 6fc06e77 authored by Guido van Rossum's avatar Guido van Rossum

Plugged a leak. (The same as the one plugged in compile.c -- forgot

to free lnotab).
parent 5ec8e4b5
......@@ -561,6 +561,7 @@ r_object(p)
Py_XDECREF(varnames);
Py_XDECREF(filename);
Py_XDECREF(name);
Py_XDECREF(lnotab);
}
return v;
......
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