commit | e67d8e514f7d7b49faec3e5a181c7019f07467ba | [log] [tgz] |
---|---|---|
author | Fredrik Lundh <fredrik@pythonware.com> | Sun Aug 27 21:32:46 2000 +0000 |
committer | Fredrik Lundh <fredrik@pythonware.com> | Sun Aug 27 21:32:46 2000 +0000 |
tree | d240e8f909e24c7e834fd7c5480bdc8f4249321f | |
parent | 33accc1f5c4c8122b5dc6b207b2c4c80ac37f7b7 [diff] |
oops. accidentally reintroduced a memory leak. put the bugfix back.
diff --git a/Modules/_sre.c b/Modules/_sre.c index f5698f1..61ee694 100644 --- a/Modules/_sre.c +++ b/Modules/_sre.c
@@ -1704,10 +1704,11 @@ break; } - if (PyList_Append(list, item) < 0) { - Py_DECREF(item); + status = PyList_Append(list, item); + Py_DECREF(item); + + if (status < 0) goto error; - } if (state.ptr == state.start) state.start = (void*) ((char*) state.ptr + state.charsize);