[issue41252] Incorrect reference counting in _ssl.c's _servername_callback()

2020-07-09 Thread Christian Heimes
Christian Heimes added the comment: Thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue41252] Incorrect reference counting in _ssl.c's _servername_callback()

2020-07-09 Thread miss-islington
miss-islington added the comment: New changeset 90584c02b4dcfc087bee5e4131b7ba72b669d58a by Miss Islington (bot) in branch '3.9': bpo-41252: Fix incorrect refcounting in _ssl.c's _servername_callback() (GH-21407)

[issue41252] Incorrect reference counting in _ssl.c's _servername_callback()

2020-07-09 Thread miss-islington
miss-islington added the comment: New changeset 54babbe976531d4d1c21ea415f71e7c6846e15bc by Miss Islington (bot) in branch '3.8': bpo-41252: Fix incorrect refcounting in _ssl.c's _servername_callback() (GH-21407)

[issue41252] Incorrect reference counting in _ssl.c's _servername_callback()

2020-07-09 Thread miss-islington
Change by miss-islington : -- pull_requests: +20559 pull_request: https://github.com/python/cpython/pull/21410 ___ Python tracker ___

[issue41252] Incorrect reference counting in _ssl.c's _servername_callback()

2020-07-09 Thread miss-islington
Change by miss-islington : -- pull_requests: +20560 pull_request: https://github.com/python/cpython/pull/21411 ___ Python tracker ___

[issue41252] Incorrect reference counting in _ssl.c's _servername_callback()

2020-07-09 Thread miss-islington
miss-islington added the comment: New changeset ee96f32ca24779656d3c8736d26671fc3689f0a3 by Zackery Spytz in branch 'master': bpo-41252: Fix incorrect refcounting in _ssl.c's _servername_callback() (GH-21407) https://github.com/python/cpython/commit/ee96f32ca24779656d3c8736d26671fc3689f0a3

[issue41252] Incorrect reference counting in _ssl.c's _servername_callback()

2020-07-08 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +20557 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21407 ___ Python tracker ___

[issue41252] Incorrect reference counting in _ssl.c's _servername_callback()

2020-07-08 Thread Zackery Spytz
New submission from Zackery Spytz : In _servername_callback(), servername_bytes will be used after being decrefed if PyUnicode_FromEncodedObject() fails. -- assignee: christian.heimes components: Extension Modules, SSL messages: 373371 nosy: ZackerySpytz, christian.heimes priority: