Skip to content

Commit

Permalink
Fix for Problem with soft-if-then-else
Browse files Browse the repository at this point in the history
  • Loading branch information
infradig committed Jan 23, 2025
1 parent df63ab1 commit e2a539f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/query.c
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ int retry_choice(query *q)

trim_heap(q);

if (ch->succeed_on_retry && !ch->reset) {
if (ch->succeed_on_retry) {
q->st.curr_instr += ch->skip;
return ch->skip ? -2 : -1;
}
Expand Down

0 comments on commit e2a539f

Please sign in to comment.