We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a37d81 commit 0b257c3Copy full SHA for 0b257c3
Python/ast_opt.c
@@ -39,7 +39,7 @@ static ControlFlowInFinallyContext*
39
get_cf_finally_top(_PyASTOptimizeState *state)
40
{
41
int idx = state->cf_finally_used;
42
- return state->cf_finally.array + idx * sizeof(ControlFlowInFinallyContext);
+ return ((ControlFlowInFinallyContext*)state->cf_finally.array) + idx;
43
}
44
45
static int
0 commit comments