From 72e1738c45c4d4cdec63252eb9d322be9335b63a Mon Sep 17 00:00:00 2001 From: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> Date: Sat, 25 Oct 2025 18:47:10 +0100 Subject: [PATCH] fix --- Python/optimizer_symbols.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Python/optimizer_symbols.c b/Python/optimizer_symbols.c index b9747b7fd841..f16c6b0659f8 100644 --- a/Python/optimizer_symbols.c +++ b/Python/optimizer_symbols.c @@ -936,6 +936,7 @@ _Py_uop_frame_pop(JitOptContext *ctx, PyCodeObject *co, int curr_stackentries) // -1 to stackentries as we push to the stack our return value after this. _Py_UOpsAbstractFrame *new_frame = _Py_uop_frame_new(ctx, co, curr_stackentries - 1, NULL, 0); if (new_frame == NULL) { + ctx->done = true; return 1; } -- 2.47.3