Skip to content

Commit 9af48c2

Browse files
committed
Revert "Just for test"
This reverts commit 877f3a9.
1 parent 877f3a9 commit 9af48c2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Python/pystate.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -808,6 +808,10 @@ interpreter_clear(PyInterpreterState *interp, PyThreadState *tstate)
808808

809809
#ifdef _Py_TIER2
810810
_Py_ClearExecutorDeletionList(interp);
811+
if (interp->jit_uop_buffer != NULL) {
812+
PyMem_RawFree(interp->jit_uop_buffer);
813+
interp->jit_uop_buffer = NULL;
814+
}
811815
#endif
812816
_PyAST_Fini(interp);
813817
_PyAtExit_Fini(interp);

0 commit comments

Comments
 (0)