From 2963fe07119c0dfa0d7fc42508912272c0100342 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 17 Oct 2011 13:09:27 -0400 Subject: [PATCH] plug possible refleak (closes #13199) --- Objects/sliceobject.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Objects/sliceobject.c b/Objects/sliceobject.c index 51c53a8a11c..d7b97c9699a 100644 --- a/Objects/sliceobject.c +++ b/Objects/sliceobject.c @@ -320,9 +320,13 @@ slice_richcompare(PyObject *v, PyObject *w, int op) } t1 = PyTuple_New(3); - t2 = PyTuple_New(3); - if (t1 == NULL || t2 == NULL) + if (t1 == NULL) return NULL; + t2 = PyTuple_New(3); + if (t2 == NULL) { + Py_DECREF(t1); + return NULL; + } PyTuple_SET_ITEM(t1, 0, ((PySliceObject *)v)->start); PyTuple_SET_ITEM(t1, 1, ((PySliceObject *)v)->stop);