Skip to content

Commit d513fdc

Browse files
committed
gh-154014: Use internal executor free helper
1 parent 1f0ea1f commit d513fdc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/optimizer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1809,7 +1809,7 @@ make_cold_executor(uint16_t opcode)
18091809
cold->jit_code = NULL;
18101810
cold->jit_size = 0;
18111811
if (_PyJIT_Compile(cold, cold->trace, 1)) {
1812-
PyExecutor_Free(cold);
1812+
_PyExecutor_Free(cold);
18131813
Py_FatalError("Cannot allocate core JIT code");
18141814
}
18151815
#endif

0 commit comments

Comments
 (0)