summaryrefslogtreecommitdiffstats
path: root/Objects/longobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/longobject.c')
-rw-r--r--Objects/longobject.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c
index 834b8a8..7c805a5 100644
--- a/Objects/longobject.c
+++ b/Objects/longobject.c
@@ -769,6 +769,7 @@ PyLong_FromString(str, pend, base)
if (str == start) {
PyErr_SetString(PyExc_ValueError,
"no digits in long int constant");
+ Py_DECREF(z);
return NULL;
}
if (sign < 0 && z != NULL && z->ob_size != 0)