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.

classification
Title: pyshellext.cpp: Possible null pointer dereference
Type: behavior Stage: resolved
Components: Versions: Python 3.8, Python 3.7, Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: ZackerySpytz, miss-islington
Priority: normal Keywords: patch

Created on 2018-09-22 17:00 by ZackerySpytz, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 9497 merged ZackerySpytz, 2018-09-22 17:04
PR 9555 merged miss-islington, 2018-09-25 04:25
PR 9556 merged miss-islington, 2018-09-25 04:25
Messages (4)
msg326098 - (view) Author: Zackery Spytz (ZackerySpytz) * (Python triager) Date: 2018-09-22 17:00
The GlobalLock() call in UpdateDropDescription() is not checked for failure.
msg326316 - (view) Author: miss-islington (miss-islington) Date: 2018-09-25 04:25
New changeset f6c8007a29b95b3ea3ca687a9b4924769a696328 by Miss Islington (bot) (Zackery Spytz) in branch 'master':
bpo-34770: Fix a possible null pointer dereference in pyshellext.cpp (GH-9497)
https://github.com/python/cpython/commit/f6c8007a29b95b3ea3ca687a9b4924769a696328
msg326318 - (view) Author: miss-islington (miss-islington) Date: 2018-09-25 04:44
New changeset db23206367e2bfbbdfb29b7699f25a14ba353ae7 by Miss Islington (bot) in branch '3.7':
bpo-34770: Fix a possible null pointer dereference in pyshellext.cpp (GH-9497)
https://github.com/python/cpython/commit/db23206367e2bfbbdfb29b7699f25a14ba353ae7
msg326319 - (view) Author: miss-islington (miss-islington) Date: 2018-09-25 04:47
New changeset 936d740ac0308fdcb87c11cbe87962d4fe06f5ab by Miss Islington (bot) in branch '3.6':
bpo-34770: Fix a possible null pointer dereference in pyshellext.cpp (GH-9497)
https://github.com/python/cpython/commit/936d740ac0308fdcb87c11cbe87962d4fe06f5ab
History
Date User Action Args
2022-04-11 14:59:06adminsetgithub: 78951
2018-09-25 05:06:05xiang.zhangsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-09-25 04:47:14miss-islingtonsetmessages: + msg326319
2018-09-25 04:44:16miss-islingtonsetmessages: + msg326318
2018-09-25 04:25:44miss-islingtonsetpull_requests: + pull_request8959
2018-09-25 04:25:36miss-islingtonsetpull_requests: + pull_request8958
2018-09-25 04:25:28miss-islingtonsetnosy: + miss-islington
messages: + msg326316
2018-09-22 17:04:21ZackerySpytzsetkeywords: + patch
stage: patch review
pull_requests: + pull_request8904
2018-09-22 17:00:58ZackerySpytzcreate