From: John Darrington Date: Sat, 28 Jul 2012 10:44:26 +0000 (+0200) Subject: Fix typo in include-path.c which was causing memory leaks. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=803f3668bea3d550ce1c8efecc2f1ab5937bffe2;p=pspp Fix typo in include-path.c which was causing memory leaks. --- 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, ".");