mercurial/parsers.c
branchstable
changeset 23944 ec28f8b66e62
parent 23943 5fb44983a696
child 23945 33d6aaf84c9e
--- a/mercurial/parsers.c	Fri Jan 23 15:30:21 2015 -0500
+++ b/mercurial/parsers.c	Fri Jan 23 15:33:27 2015 -0500
@@ -1691,9 +1691,11 @@
 		if (!PyInt_Check(obj)) {
 			PyErr_SetString(PyExc_TypeError,
 					"arguments must all be ints");
+			Py_DECREF(obj);
 			goto bail;
 		}
 		val = PyInt_AsLong(obj);
+		Py_DECREF(obj);
 		if (val == -1) {
 			ret = PyList_New(0);
 			goto done;