This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xiang.zhang
Recipients serhiy.storchaka, vstinner, xiang.zhang
Date 2016-10-10.17:13:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1476119616.69.0.933399987937.issue28408@psf.upfronthosting.co.za>
In-reply-to
Content
_PyUnicodeWriter_Finish gets 2 problems now:

1. It has two same branches handling empty strings which is redundant.

2. It may leak the inner buffer object when resize_compact fails. When resize_compact fails, the buffer object is left untouched. Then the writer itself is freed and the buffer is leaked.
History
Date User Action Args
2016-10-10 17:13:36xiang.zhangsetrecipients: + xiang.zhang, vstinner, serhiy.storchaka
2016-10-10 17:13:36xiang.zhangsetmessageid: <1476119616.69.0.933399987937.issue28408@psf.upfronthosting.co.za>
2016-10-10 17:13:36xiang.zhanglinkissue28408 messages
2016-10-10 17:13:36xiang.zhangcreate