Issue #16215: Fix potential double memory free in str.replace().
Patch by Serhiy Storchaka.
This commit is contained in:
parent
fa7aeecbca
commit
6d5ad227a5
|
@ -12,6 +12,9 @@ What's New in Python 3.3.1?
|
|||
Core and Builtins
|
||||
-----------------
|
||||
|
||||
- Issue #16215: Fix potential double memory free in str.replace(). Patch
|
||||
by Serhiy Storchaka.
|
||||
|
||||
- Issue #16453: Fix equality testing of dead weakref objects.
|
||||
|
||||
- Issue #9535: Fix pending signals that have been received but not yet
|
||||
|
|
|
@ -10118,6 +10118,7 @@ replace(PyObject *self, PyObject *str1,
|
|||
/* widen self and buf1 */
|
||||
rkind = kind2;
|
||||
if (release1) PyMem_Free(buf1);
|
||||
release1 = 0;
|
||||
sbuf = _PyUnicode_AsKind(self, rkind);
|
||||
if (!sbuf) goto error;
|
||||
srelease = 1;
|
||||
|
@ -10179,6 +10180,7 @@ replace(PyObject *self, PyObject *str1,
|
|||
if (!sbuf) goto error;
|
||||
srelease = 1;
|
||||
if (release1) PyMem_Free(buf1);
|
||||
release1 = 0;
|
||||
buf1 = _PyUnicode_AsKind(str1, rkind);
|
||||
if (!buf1) goto error;
|
||||
release1 = 1;
|
||||
|
|
Loading…
Reference in New Issue