summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Python/import.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/Python/import.c b/Python/import.c
index e6ea3dd..5b9f162 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -2104,9 +2104,10 @@ ensure_fromlist(PyObject *mod, PyObject *fromlist, char *buf, int buflen,
if (all == NULL)
PyErr_Clear();
else {
- if (!ensure_fromlist(mod, all, buf, buflen, 1))
- return 0;
+ int ret = ensure_fromlist(mod, all, buf, buflen, 1);
Py_DECREF(all);
+ if (!ret)
+ return 0;
}
continue;
}