[issue34435] Missing NULL check in unicode_encode_ucs1()

2018-08-19 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list

[issue34435] Missing NULL check in unicode_encode_ucs1()

2018-08-19 Thread Alexey Izbyshev
Alexey Izbyshev added the comment: Thank you for merging! -- resolution: -> fixed ___ Python tracker ___ ___ Python-bugs-list

[issue34435] Missing NULL check in unicode_encode_ucs1()

2018-08-19 Thread miss-islington
miss-islington added the comment: New changeset e77cdae0f84fc390fedea1f53bbc8746d634 by Miss Islington (bot) in branch '3.6': bpo-34435: Add missing NULL check to unicode_encode_ucs1(). (GH-8823) https://github.com/python/cpython/commit/e77cdae0f84fc390fedea1f53bbc8746d634

[issue34435] Missing NULL check in unicode_encode_ucs1()

2018-08-19 Thread miss-islington
miss-islington added the comment: New changeset 1e596d3a20a1a9d1ef15218ef33795bc9e651b7a by Miss Islington (bot) in branch '3.7': bpo-34435: Add missing NULL check to unicode_encode_ucs1(). (GH-8823) https://github.com/python/cpython/commit/1e596d3a20a1a9d1ef15218ef33795bc9e651b7a

[issue34435] Missing NULL check in unicode_encode_ucs1()

2018-08-19 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34435] Missing NULL check in unicode_encode_ucs1()

2018-08-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your PR Alexey. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue34435] Missing NULL check in unicode_encode_ucs1()

2018-08-19 Thread miss-islington
Change by miss-islington : -- pull_requests: +8304 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34435] Missing NULL check in unicode_encode_ucs1()

2018-08-19 Thread miss-islington
Change by miss-islington : -- pull_requests: +8303 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34435] Missing NULL check in unicode_encode_ucs1()

2018-08-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 74a307d48ef8b278c4629ca0ef2139be1c9a34e6 by Serhiy Storchaka (Alexey Izbyshev) in branch 'master': bpo-34435: Add missing NULL check to unicode_encode_ucs1(). (GH-8823)

[issue34435] Missing NULL check in unicode_encode_ucs1()

2018-08-19 Thread Alexey Izbyshev
Change by Alexey Izbyshev : -- keywords: +patch pull_requests: +8302 stage: -> patch review ___ Python tracker ___ ___

[issue34435] Missing NULL check in unicode_encode_ucs1()

2018-08-19 Thread Alexey Izbyshev
New submission from Alexey Izbyshev : A possible NULL return on out-of-memory condition at Objects/unicodeobject.c:6835 is not handled. Reported by Svace static analyzer. -- components: Interpreter Core messages: 323762 nosy: inada.naoki, izbyshev, serhiy.storchaka, vstinner