diff --git a/src/compiler/parse.c b/src/compiler/parse.c index 9424cfb..ef5f67b 100644 --- a/src/compiler/parse.c +++ b/src/compiler/parse.c @@ -1795,7 +1795,7 @@ static Node *parse_ifelse_statement(Context *ctx) static Node *parse_compound_statement(Context *ctx, TokenKind end) { - int end_offset; + int end_offset = 0; Node *head, **tail; tail = &head;