From c607515c495c9c1a7d37eb3d967bda736a320cc8 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Mon, 27 Oct 2008 15:44:09 +0000 Subject: [PATCH] Fix anchor token underflow while parsing for-statements. [r23236] --- parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser.c b/parser.c index 5bda23a..df1a6b6 100644 --- a/parser.c +++ b/parser.c @@ -9618,8 +9618,8 @@ static statement_t *parse_for(void) "step of 'for'-statement has no effect"); } } - rem_anchor_token(')'); expect(')'); + rem_anchor_token(')'); statement->fors.body = parse_loop_body(statement); assert(scope == &statement->fors.scope); -- 2.20.1