commit | 04e654a63c012cc321572e6dabbe70550c4f319f | [log] [tgz] |
---|---|---|
author | Fred Drake <fdrake@acm.org> | Fri Aug 18 19:53:25 2000 +0000 |
committer | Fred Drake <fdrake@acm.org> | Fri Aug 18 19:53:25 2000 +0000 |
tree | 41bfef54ba9e67fc0b622219094a31f5f5826134 | |
parent | ce4dc41b1a2be5b5335bcbc0865b145852a5c0e5 [diff] [blame] |
Remove a couple of warnings turned up by "gcc -Wall".
diff --git a/Python/ceval.c b/Python/ceval.c index af28cdc..92fa887 100644 --- a/Python/ceval.c +++ b/Python/ceval.c
@@ -2856,8 +2856,9 @@ if (!name) Py_DECREF(list); else { - if (PyList_Append(list, name) < 0) + if (PyList_Append(list, name) < 0) { Py_DECREF(list); + } Py_DECREF(name); } } else {