8000 gh-129223: Do not allow the compiler to optimise away symbols for debug sections by pablogsal · Pull Request #129225 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-129223: Do not allow the compiler to optimise away symbols for debug sections #129225

New issue

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

Merged
merged 4 commits into from
Jan 24, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix the other problem
  • Loading branch information
pablogsal committed Jan 24, 2025
commit 596a58f7227f5fcdff3b8aac14439dd8edc0115f
2 changes: 1 addition & 1 deletion Modules/_testexternalinspection.c
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ read_py_long(pid_t pid, _Py_DebugOffsets* offsets, uintptr_t address)
return 0;
}

char *digits = (char *)PyMem_RawMalloc(size * sizeof(digit));
digit *digits = (digit *)PyMem_RawMalloc(size * sizeof(digit));
if (!digits) {
PyErr_NoMemory();
return -1;
Expand Down
Loading
0