liboconfig: Import version 0.1.1.
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Thu, 15 Feb 2007 21:08:57 +0000 (22:08 +0100)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Thu, 15 Feb 2007 21:08:57 +0000 (22:08 +0100)
src/liboconfig/ChangeLog
src/liboconfig/parser.y

index 85f0dd9..390c507 100644 (file)
@@ -1,2 +1,5 @@
+2007-02-15, Version 0.1.1
+       * src/parser.y: Fixes a memory leak.
+
 2007-02-11, Version 0.1.0
        * Initial release.
index 6d1de2d..ea6ed0a 100644 (file)
@@ -133,6 +133,7 @@ block:
                yyerror ("Block not closed..\n");
                exit (1);
         }
+        free ($3); $3 = NULL;
         $$ = $1;
         $$.children = $2.statement;
         $$.children_num = $2.statement_num;