]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Plugged a leak. (The same as the one plugged in compile.c -- forgot
authorGuido van Rossum <guido@python.org>
Sat, 26 Jul 1997 23:30:18 +0000 (23:30 +0000)
committerGuido van Rossum <guido@python.org>
Sat, 26 Jul 1997 23:30:18 +0000 (23:30 +0000)
to free lnotab).

Python/marshal.c

index 6a8ec46ad6f78f5ef1d59002c32cde58a79b877e..75a20c23ec844c270960c6575abb5a1dc47aaff8 100644 (file)
@@ -561,6 +561,7 @@ r_object(p)
                        Py_XDECREF(varnames);
                        Py_XDECREF(filename);
                        Py_XDECREF(name);
+                       Py_XDECREF(lnotab);
 
                }
                return v;