vere: fix leak in _n_comp

This commit is contained in:
Philip Monk 2021-09-13 15:31:44 -05:00
parent a835af8543
commit 1180b76203
No known key found for this signature in database
GPG Key ID: B66E1F02604E44EC

View File

@ -1233,7 +1233,7 @@ _n_comp(u3_noun* ops, u3_noun fol, c3_o los_o, c3_o tel_o)
op_y = (c3y == los_o)
? (arg <= 0xFF ? FABL : arg <= 0xFFFF ? FASL : FIBL) // overflows to FISL
: (arg <= 0xFF ? FABK : arg <= 0xFFFF ? FASK : FIBK); // overflows to FISK
++tot_w; _n_emit(ops, u3nc(op_y, arg));
++tot_w; _n_emit(ops, u3nc(op_y, u3k(arg)));
break;
}
break;