diff options
author | Guido van Rossum <guido@python.org> | 1996-05-21 23:44:17 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-05-21 23:44:17 (GMT) |
commit | f97632639e63ac4c3fa3d30f969764585d992aee (patch) | |
tree | fafec93fa65c17b34806addcf880a908061dfca3 /Objects | |
parent | 993952bfb292dba03d19acd1d1859ec4e2e3b003 (diff) | |
download | cpython-f97632639e63ac4c3fa3d30f969764585d992aee.zip cpython-f97632639e63ac4c3fa3d30f969764585d992aee.tar.gz cpython-f97632639e63ac4c3fa3d30f969764585d992aee.tar.bz2 |
Plug memory leak in the previous fix :-(
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/stringobject.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/stringobject.c b/Objects/stringobject.c index 48c246a..ac03ff6 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -673,7 +673,6 @@ formatstring(format, args) char *buf; int sign; int len; - args_owned = 0; if (*fmt == '(') { char *keystart; int keylen; |