Skip to content
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