]> git.sur5r.net Git - i3/i3/commitdiff
Bugfix: cfgparse: correctly free parser/lexer
authorMichael Stapelberg <michael@stapelberg.de>
Sun, 31 Jul 2011 15:50:54 +0000 (17:50 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 31 Jul 2011 15:50:54 +0000 (17:50 +0200)
src/cfgparse.y

index dac63b95d385e4ca5dc5c192f12a051718cdd65f..6fa882799aa615a055aa4b40776c0968dd01fb87 100644 (file)
@@ -19,6 +19,7 @@ static Match current_match;
 typedef struct yy_buffer_state *YY_BUFFER_STATE;
 extern int yylex(struct context *context);
 extern int yyparse(void);
+extern int yylex_destroy(void);
 extern FILE *yyin;
 YY_BUFFER_STATE yy_scan_string(const char *);
 
@@ -467,6 +468,7 @@ void parse_file(const char *f) {
         start_configerror_nagbar(f);
     }
 
+    yylex_destroy();
     FREE(context->line_copy);
     free(context);
     free(new);