gh-151763: Fix crash in PyList_New() on allocation failure under low memory#154019
Open
Abhi210 wants to merge 3 commits into
Open
gh-151763: Fix crash in PyList_New() on allocation failure under low memory#154019Abhi210 wants to merge 3 commits into
Abhi210 wants to merge 3 commits into
Conversation
| } | ||
| else { | ||
| op->ob_item = NULL; | ||
| Py_SET_SIZE(op, 0); |
Contributor
There was a problem hiding this comment.
The following two commands are safe, IIUC.
Suggested change
| Py_SET_SIZE(op, 0); | |
| op->allocated = 0; | |
| Py_SET_SIZE(op, size); |
Contributor
There was a problem hiding this comment.
And then we can remove this Py_SET_SIZE.
| else { | ||
| op->ob_item = NULL; | ||
| Py_SET_SIZE(op, 0); | ||
| op->allocated = 0; |
Contributor
There was a problem hiding this comment.
Suggested change
| op->allocated = 0; |
Contributor
Author
There was a problem hiding this comment.
So, for clarification, should I make the following changes?
+ op->ob_item = NULL;
- Py_SET_SIZE(op, 0);
- op->allocated = 0;And keep the Py_SET_SIZE(op, size); at the end?
Contributor
There was a problem hiding this comment.
If we call Py_SET_SIZE(op, size); at the top, then we don't need to repeat it at the bottom, IIUC.
Contributor
Author
There was a problem hiding this comment.
I have made the suggested changes by putting Py_SET_SIZE(op, 0); and op->allocated = 0;. The reproduction script runs successfully without any crash.
Abhi210
force-pushed
the
gh-152125
branch
2 times, most recently
from
July 19, 2026 13:36
8480542 to
cfee4d2
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes gh-152125 (one of the OOM-injection fuzzing findings tracked under the gh-151763 umbrella).