commit | e6bdb37e5bc7d250e17c3d4fef6961e178e02b64 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Thu Dec 16 15:10:21 2004 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Thu Dec 16 15:10:21 2004 +0000 |
tree | 58a0110ed300a6f95617f4298bfbb82727561f56 | |
parent | 4d01259fb262e7eb035b56ae70637884ef4e8cd8 [diff] |
Add missing decref.
diff --git a/Objects/abstract.c b/Objects/abstract.c index b981001..024f97d 100644 --- a/Objects/abstract.c +++ b/Objects/abstract.c
@@ -1439,6 +1439,7 @@ if (n < oldn) { /* Check for overflow */ PyErr_NoMemory(); + Py_DECREF(item); goto Fail; } if (_PyTuple_Resize(&result, n) != 0) {