The cleanup code in com-init() at label fail_0000 should remove

c_varnames, not c_lnotab.
This commit is contained in:
Guido van Rossum 1999-12-20 20:40:12 +00:00
parent e9c69bc53e
commit 72badf5404
1 changed files with 1 additions and 1 deletions

View File

@ -457,7 +457,7 @@ com_init(c, filename)
return 1;
fail_0000:
Py_DECREF(c->c_lnotab);
Py_DECREF(c->c_varnames);
fail_000:
Py_DECREF(c->c_locals);
fail_00: