Remove a couple of warnings turned up by "gcc -Wall".

This commit is contained in:
Fred Drake 2000-08-18 19:53:25 +00:00
parent ce4dc41b1a
commit 04e654a63c
2 changed files with 4 additions and 3 deletions

View file

@ -2856,8 +2856,9 @@ find_from_args(PyFrameObject *f, int nexti)
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 {