diff options
| author | Anthony Baxter <anthonybaxter@gmail.com> | 2001-11-21 05:41:03 (GMT) |
|---|---|---|
| committer | Anthony Baxter <anthonybaxter@gmail.com> | 2001-11-21 05:41:03 (GMT) |
| commit | d2d88aedce3c1fa07d7def9ae2b54b9a461d8b55 (patch) | |
| tree | 71c3e886e0e2534c48c11ec18a366a7991d0b86f /Python/errors.c | |
| parent | b104606d4c63980c7698e9f846b1ce341eac3979 (diff) | |
| download | cpython-d2d88aedce3c1fa07d7def9ae2b54b9a461d8b55.zip cpython-d2d88aedce3c1fa07d7def9ae2b54b9a461d8b55.tar.gz cpython-d2d88aedce3c1fa07d7def9ae2b54b9a461d8b55.tar.bz2 | |
backport of tim's 2.66:
. SF bug [#467265] Compile errors on SuSe Linux on IBM/s390.
- errors.c, PyErr_Format: add a va_end() to balance the va_start().
Diffstat (limited to 'Python/errors.c')
| -rw-r--r-- | Python/errors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/errors.c b/Python/errors.c index 8d02b8e..27abd84 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -509,7 +509,7 @@ PyErr_Format(PyObject *exception, const char *format, ...) PyErr_SetObject(exception, string); Py_XDECREF(string); - + va_end(vargs); return NULL; } |
