From 803f3668bea3d550ce1c8efecc2f1ab5937bffe2 Mon Sep 17 00:00:00 2001 From: John Darrington Date: Sat, 28 Jul 2012 12:44:26 +0200 Subject: [PATCH] Fix typo in include-path.c which was causing memory leaks. --- src/language/lexer/include-path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/language/lexer/include-path.c b/src/language/lexer/include-path.c index bc20122daf..96870a5a9a 100644 --- a/src/language/lexer/include-path.c +++ b/src/language/lexer/include-path.c @@ -75,7 +75,7 @@ include_path_init__ (void) if (inited) return; - inited = false; + inited = true; string_array_init (&the_include_path); string_array_append (&the_include_path, "."); -- 2.30.2