From: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> Date: Sat, 25 Oct 2025 17:47:10 +0000 (+0100) Subject: fix X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=72e1738c45c4d4cdec63252eb9d322be9335b63a;p=thirdparty%2FPython%2Fcpython.git fix --- 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; }