Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641
diff --git a/Python/getargs.c b/Python/getargs.c
index 0069671..a77bb05 100644
--- a/Python/getargs.c
+++ b/Python/getargs.c
@@ -1725,6 +1725,7 @@
     assert(min >= 0);
     assert(min <= max);
     if (!PyTuple_Check(args)) {
+        va_end(vargs);
         PyErr_SetString(PyExc_SystemError,
             "PyArg_UnpackTuple() argument list is not a tuple");
         return 0;