diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-09-23 16:59:34 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-09-23 16:59:34 (GMT) |
commit | cbcbfdf19f7e2824c95d534bab67839b693805dc (patch) | |
tree | 3b48238273a1627955b9e45cb6c56dc36cf49c96 /Python/codecs.c | |
parent | 21df71ae8e9f7ed1a0f3de6923fa30961ac15888 (diff) | |
parent | 8aa8c47db2f0205dec61d50274817cf6b0b15e0a (diff) | |
download | cpython-cbcbfdf19f7e2824c95d534bab67839b693805dc.zip cpython-cbcbfdf19f7e2824c95d534bab67839b693805dc.tar.gz cpython-cbcbfdf19f7e2824c95d534bab67839b693805dc.tar.bz2 |
Fixed reference leak in the "backslashreplace" error handler.
Diffstat (limited to 'Python/codecs.c')
-rw-r--r-- | Python/codecs.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Python/codecs.c b/Python/codecs.c index faf1e92..02fce29 100644 --- a/Python/codecs.c +++ b/Python/codecs.c @@ -890,8 +890,10 @@ PyObject *PyCodec_BackslashReplaceErrors(PyObject *exc) ressize += 1+1+2; } res = PyUnicode_New(ressize, 127); - if (res==NULL) + if (res == NULL) { + Py_DECREF(object); return NULL; + } for (i = start, outp = PyUnicode_1BYTE_DATA(res); i < end; ++i) { c = PyUnicode_READ_CHAR(object, i); |