8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#106411 adds the _PyCompile_CleanDoc function. there's a call to PyMem_Malloc, but we don't check if it returns NULL value:
_PyCompile_CleanDoc
PyMem_Malloc
NULL
cpython/Python/compile.c
Lines 8055 to 8063 in 009e8f0
Is there a need to check for a NULL value? If so, I can send a PR.
The text was updated successfully, but these errors were encountered:
cc @methane
Sorry, something went wrong.
Yes, I forgot. Thank you. Would you create a pull request, or may I?
I'll soon send a pull request =)
pythongh-106916: Add missing error check
618f708
gh-106916: Add missing error check _PyCompile_CleanDoc (#106921)
85ed1d2
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
methane
Eclips4
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
#106411 adds the
_PyCompile_CleanDoc
function.there's a call to
PyMem_Malloc
, but we don't check if it returnsNULL
value:cpython/Python/compile.c
Lines 8055 to 8063 in 009e8f0
Is there a need to check for a
NULL
value?If so, I can send a PR.
Linked PRs
The text was updated successfully, but these errors were encountered: