From 4e941013548e5e29122460c791dcbdd51a946f75 Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Mon, 1 Jun 2026 08:55:26 +0100 Subject: [PATCH] Fixed bounds check --- parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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--; -- 2.34.1