diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-12-02 23:05:52 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-12-02 23:05:52 (GMT) |
commit | 7c088a9b5cb7d2a74bfe3bc4a8e380b9023e5579 (patch) | |
tree | 7c84f7043dd05e0dcdcee861269880fa43b14472 /Objects/unicodeobject.c | |
parent | 7bc168faf58db89de19ef57d4b1f27fcf8fc2833 (diff) | |
parent | 6648bf5661b79f5b40385b21570dff6f146c5eb5 (diff) | |
download | cpython-7c088a9b5cb7d2a74bfe3bc4a8e380b9023e5579.zip cpython-7c088a9b5cb7d2a74bfe3bc4a8e380b9023e5579.tar.gz cpython-7c088a9b5cb7d2a74bfe3bc4a8e380b9023e5579.tar.bz2 |
Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r-- | Objects/unicodeobject.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 47c97cc..895a4e8 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -885,6 +885,11 @@ resize_compact(PyObject *unicode, Py_ssize_t length) } new_size = (struct_size + (length + 1) * char_size); + if (_PyUnicode_HAS_UTF8_MEMORY(unicode)) { + PyObject_DEL(_PyUnicode_UTF8(unicode)); + _PyUnicode_UTF8(unicode) = NULL; + _PyUnicode_UTF8_LENGTH(unicode) = 0; + } _Py_DEC_REFTOTAL; _Py_ForgetReference(unicode); |