fix: lexer_context also freed after normal execution... -_-

This commit is contained in:
Matteo Flebus 2026-01-31 11:02:19 +01:00
parent d95b0fd220
commit 5de6ef2bb5

View file

@ -72,6 +72,7 @@ static int main_loop(struct lexer_context *ctx, struct args_options *options,
ast_free(&command_ast);
parser_close();
hash_map_free(&vars);
destroy_lexer_context(ctx);
return return_code;
}