From: Robert Pengelly Date: Mon, 1 Jun 2026 07:55:26 +0000 (+0100) Subject: Fixed bounds check X-Git-Url: https://git.candlhat.org/?a=commitdiff_plain;h=4e941013548e5e29122460c791dcbdd51a946f75;p=scc.git Fixed bounds check --- diff --git a/parse.c b/parse.c index cac3127..e445aee 100644 --- a/parse.c +++ b/parse.c @@ -25960,7 +25960,7 @@ static int source_lhs_has_char_pointer_cast_before_now (const char *p) { q = p; - while (limit-- > 0 && q > tok.start - 4096) { + while (limit-- > 0 && q > tok.start) { q--;