summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-05-21 23:44:17 (GMT)
committerGuido van Rossum <guido@python.org>1996-05-21 23:44:17 (GMT)
commitf97632639e63ac4c3fa3d30f969764585d992aee (patch)
treefafec93fa65c17b34806addcf880a908061dfca3 /Objects
parent993952bfb292dba03d19acd1d1859ec4e2e3b003 (diff)
downloadcpython-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.c1
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;