commit | d5a88044a3fe666c63db99a2b58561f726728664 | [log] [tgz] |
---|---|---|
author | Christian Heimes <christian@cheimes.de> | Mon Sep 10 02:54:51 2012 +0200 |
committer | Christian Heimes <christian@cheimes.de> | Mon Sep 10 02:54:51 2012 +0200 |
tree | 74230a934a9e7e20973beef3971411d09f1be191 | |
parent | 949f3317312c64425efae21bda86b98423aac9cf [diff] [blame] |
PyTuple_Pack() was missing va_end() in its error branch which lead to a resource leak.
diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c index e99eda0..b345460 100644 --- a/Objects/tupleobject.c +++ b/Objects/tupleobject.c
@@ -194,8 +194,10 @@ va_start(vargs, n); result = PyTuple_New(n); - if (result == NULL) + if (result == NULL) { + va_end(vargs); return NULL; + } items = ((PyTupleObject *)result)->ob_item; for (i = 0; i < n; i++) { o = va_arg(vargs, PyObject *);