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: Fix reference leak from descr_check
Type: enhancement Stage: resolved
Components: Interpreter Core Versions: Python 3.11, Python 3.10, Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: corona10, kj, miss-islington, vstinner
Priority: normal Keywords: patch

Created on 2021-10-06 00:42 by corona10, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 28719 merged corona10, 2021-10-06 00:43
PR 28779 merged miss-islington, 2021-10-07 00:52
PR 28780 merged corona10, 2021-10-07 01:37
Messages (5)
msg403282 - (view) Author: Dong-hee Na (corona10) * (Python committer) Date: 2021-10-06 00:42
Report from @kj: https://github.com/python/cpython/pull/28719#discussion_r721249643
msg403306 - (view) Author: Dong-hee Na (corona10) * (Python committer) Date: 2021-10-06 14:55
Compiler warnings from PR 28572:

Objects/descrobject.c#L183
‘res’ may be used uninitialized in this function [-Wmaybe-uninitialized]

Objects/descrobject.c#L201
‘res’ may be used uninitialized in this function [-Wmaybe-uninitialized]

Objects/descrobject.c#L217
‘res’ may be used uninitialized in this function [-Wmaybe-uninitialized]
msg403342 - (view) Author: Dong-hee Na (corona10) * (Python committer) Date: 2021-10-07 00:52
New changeset e6ff4eba6da9b64aed235ba8d730b5645f71955c by Dong-hee Na in branch 'main':
bpo-45385: Fix reference leak from descr_check (#28719)
https://github.com/python/cpython/commit/e6ff4eba6da9b64aed235ba8d730b5645f71955c
msg403345 - (view) Author: Dong-hee Na (corona10) * (Python committer) Date: 2021-10-07 02:10
New changeset 660718dba57624720c2a9832f10f29ace59c77cf by Dong-hee Na in branch '3.9':
[3.9] bpo-45385: Fix reference leak from descr_check (GH-28719) (GH-28780)
https://github.com/python/cpython/commit/660718dba57624720c2a9832f10f29ace59c77cf
msg403355 - (view) Author: Dong-hee Na (corona10) * (Python committer) Date: 2021-10-07 07:48
New changeset 35d4857375b6ef8f1243db4da9c2cba0bee63ad6 by Miss Islington (bot) in branch '3.10':
bpo-45385: Fix reference leak from descr_check (GH-28719) (GH-28779)
https://github.com/python/cpython/commit/35d4857375b6ef8f1243db4da9c2cba0bee63ad6
History
Date User Action Args
2022-04-11 14:59:50adminsetgithub: 89548
2021-10-07 07:48:15corona10setmessages: + msg403355
2021-10-07 02:10:47corona10setstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2021-10-07 02:10:23corona10setmessages: + msg403345
2021-10-07 01:37:08corona10setpull_requests: + pull_request27114
2021-10-07 00:52:09miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request27113
2021-10-07 00:52:05corona10setmessages: + msg403342
2021-10-06 14:55:10corona10settitle: Fix possible reference leak from descr_check -> Fix reference leak from descr_check
2021-10-06 14:55:04corona10setmessages: + msg403306
2021-10-06 00:43:17corona10setkeywords: + patch
stage: patch review
pull_requests: + pull_request27094
2021-10-06 00:42:58corona10create