[issue34824] _ssl.c: Possible null pointer dereference

2018-10-19 Thread STINNER Victor
STINNER Victor added the comment: Thanks Zackery Spytz for the report and the fix! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue34824] _ssl.c: Possible null pointer dereference

2018-10-19 Thread STINNER Victor
STINNER Victor added the comment: New changeset 4ec9f64e07c8f397ad6699f8b99843846c219588 by Victor Stinner (Miss Islington (bot)) in branch '3.7': bpo-34824: Fix a possible NULL pointer dereference in _ssl.c (GH-9606) (GH-9743)

[issue34824] _ssl.c: Possible null pointer dereference

2018-10-19 Thread STINNER Victor
STINNER Victor added the comment: New changeset d92816de667169fbd54a3442705bc07286e8c69d by Victor Stinner (Miss Islington (bot)) in branch '3.6': bpo-34824: Fix a possible NULL pointer dereference in _ssl.c (GH-9606) (GH-9744)

[issue34824] _ssl.c: Possible null pointer dereference

2018-10-06 Thread miss-islington
Change by miss-islington : -- pull_requests: +9131 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34824] _ssl.c: Possible null pointer dereference

2018-10-06 Thread miss-islington
Change by miss-islington : -- pull_requests: +9132 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34824] _ssl.c: Possible null pointer dereference

2018-10-06 Thread miss-islington
miss-islington added the comment: New changeset 365ad2ead5bbaf7a3b18648ffa36e819559d3f75 by Miss Islington (bot) (Zackery Spytz) in branch 'master': bpo-34824: Fix a possible NULL pointer dereference in _ssl.c (GH-9606)

[issue34824] _ssl.c: Possible null pointer dereference

2018-10-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Good catch, but there is more than one error here. -- nosy: +serhiy.storchaka ___ Python tracker ___

[issue34824] _ssl.c: Possible null pointer dereference

2018-09-27 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +9003 stage: -> patch review ___ Python tracker ___ ___

[issue34824] _ssl.c: Possible null pointer dereference

2018-09-27 Thread Yury Selivanov
Change by Yury Selivanov : -- nosy: +yselivanov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34824] _ssl.c: Possible null pointer dereference

2018-09-27 Thread Zackery Spytz
New submission from Zackery Spytz : If _PyBytes_Resize() fails in _ssl_MemoryBIO_read_impl(), Py_DECREF() will be called on a null pointer. -- assignee: christian.heimes components: Extension Modules, SSL messages: 326573 nosy: ZackerySpytz, christian.heimes priority: normal severity: