[issue36398] A possible crash in structseq.c's structseq_repr()

2020-10-18 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue36398] A possible crash in structseq.c's structseq_repr()

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue36398] A possible crash in structseq.c's structseq_repr()

2019-03-22 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 93e8012f2cabd84f30b52e19fd3dc557efa9f8af by Serhiy Storchaka (Zackery Spytz) in branch 'master': bpo-36398: Fix a possible crash in structseq_repr(). (GH-12492) https://github.com/python/cpython/commit/93e8012f2cabd84f30b52e19fd3dc557efa9f8af

[issue36398] A possible crash in structseq.c's structseq_repr()

2019-03-21 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +12445 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-l

[issue36398] A possible crash in structseq.c's structseq_repr()

2019-03-21 Thread Zackery Spytz
New submission from Zackery Spytz : If the first PyUnicode_DecodeUTF8() call fails in structseq_repr(), _PyUnicodeWriter_Dealloc() will be called on an uninitialized _PyUnicodeWriter. -- components: Interpreter Core messages: 338584 nosy: ZackerySpytz priority: normal severity: normal