PyTuple_Pack() was missing va_end() in its error branch which lead to a resource leak.

This commit is contained in:
Christian Heimes 2012-09-10 02:54:51 +02:00
parent 949f331731
commit d5a88044a3
1 changed files with 3 additions and 1 deletions

View File

@ -194,8 +194,10 @@ PyTuple_Pack(Py_ssize_t n, ...)
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 *);