From 94f55837775f00eade742fa015d818633ab68318 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Fri, 12 Jun 2009 18:40:16 +0000 Subject: Fix SystemError and a wasps nest of ref counting issues. --- Objects/rangeobject.c | 32 ++++++++++++++++++++++++-------- 1 file changed, 24 insertions(+), 8 deletions(-) (limited to 'Objects/rangeobject.c') diff --git a/Objects/rangeobject.c b/Objects/rangeobject.c index 01114bb6ad..f8174caa42 100644 --- a/Objects/rangeobject.c +++ b/Objects/rangeobject.c @@ -59,26 +59,42 @@ range_new(PyTypeObject *type, PyObject *args, PyObject *kw) if (PyTuple_Size(args) <= 1) { if (!PyArg_UnpackTuple(args, "range", 1, 1, &stop)) - goto Fail; + return NULL; stop = PyNumber_Index(stop); if (!stop) - goto Fail; + return NULL; start = PyLong_FromLong(0); + if (!start) { + Py_DECREF(stop); + return NULL; + } step = PyLong_FromLong(1); - if (!start || !step) - goto Fail; + if (!step) { + Py_DECREF(stop); + Py_DECREF(start); + return NULL; + } } else { if (!PyArg_UnpackTuple(args, "range", 2, 3, &start, &stop, &step)) - goto Fail; + return NULL; /* Convert borrowed refs to owned refs */ start = PyNumber_Index(start); + if (!start) + return NULL; stop = PyNumber_Index(stop); - step = validate_step(step); - if (!start || !stop || !step) - goto Fail; + if (!stop) { + Py_DECREF(start); + return NULL; + } + step = validate_step(step); /* Caution, this can clear exceptions */ + if (!step) { + Py_DECREF(start); + Py_DECREF(stop); + return NULL; + } } obj = PyObject_New(rangeobject, &PyRange_Type); -- cgit v1.2.1