Skip to content

Commit 90e89df

Browse files
Fix the other thing too
1 parent d33a8d9 commit 90e89df

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Fix a bug in the JIT with many local variables causing a segfault.
1+
Fix the JIT handling of many local variables. This previously caused a segfault.

Python/optimizer_analysis.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ optimize_uops(
491491

492492
_Py_UOpsAbstractFrame *frame = _Py_uop_frame_new(ctx, co, curr_stacklen, NULL, 0);
493493
if (frame == NULL) {
494-
return -1;
494+
return 0;
495495
}
496496
ctx->curr_frame_depth++;
497497
ctx->frame = frame;

0 commit comments

Comments
 (0)