Skip to content

Commit

Permalink
Tentative fix for 4935
Browse files Browse the repository at this point in the history
  • Loading branch information
ddeclerck committed Sep 26, 2024
1 parent 7fb136f commit 7ad7528
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cobc/codegen.c
Original file line number Diff line number Diff line change
Expand Up @@ -8198,7 +8198,7 @@ output_perform_until (struct cb_perform *p, cb_tree l)
&& next) {
cb_tree xn;
/* Check all INDEXED BY variables used in VARYING */
for (xn = l; xn; xn = CB_CHAIN (xn)) {
for (xn = l; xn; xn = NULL /*CB_CHAIN (xn)*/) {
struct cb_field *q;
f = CB_FIELD_PTR (CB_PERFORM_VARYING(CB_VALUE (xn))->name);
if (!f->flag_indexed_by) continue;
Expand Down

0 comments on commit 7ad7528

Please sign in to comment.