grammar: free the association tracking graph
authorTheophile Ranquet <ranquet@lrde.epita.fr>
Thu, 31 Jan 2013 23:49:59 +0000 (00:49 +0100)
committerTheophile Ranquet <ranquet@lrde.epita.fr>
Fri, 1 Feb 2013 14:06:26 +0000 (15:06 +0100)
The graph introduced by Valentin wasn't free'd after use.

* src/symtab.c (assoc_free): New, clear the array of linked lists with...
(linkedlist_free): This, new.
(print_precedence_warnings): Call assoc_free when done.
(print_assoc_warnings): Free used_assoc after use.

src/symtab.c

index d3ad2fb..1768d88 100644 (file)
@@ -1058,6 +1058,42 @@ register_precedence (graphid first, graphid snd)
 
 
 /*---------------------------------------.
+| Deep clear a linked / adjacency list). |
+`---------------------------------------*/
+
+static void
+linkedlist_free (symgraphlink *node)
+{
+  if (node)
+    {
+      while (node->next)
+        {
+          symgraphlink *tmp = node->next;
+          free (node);
+          node = tmp;
+        }
+      free (node);
+    }
+}
+
+/*----------------------------------------------.
+| Clear and destroy association tracking table. |
+`----------------------------------------------*/
+
+static void
+assoc_free (void)
+{
+  int i;
+  for (i = 0; i < nsyms; ++i)
+    {
+      linkedlist_free (prec_nodes[i]->pred);
+      linkedlist_free (prec_nodes[i]->succ);
+      free (prec_nodes[i]);
+    }
+  free (prec_nodes);
+}
+
+/*---------------------------------------.
 | Initialize association tracking table. |
 `---------------------------------------*/
 
@@ -1127,4 +1163,6 @@ print_precedence_warnings (void)
         complain (&s->location, Wprecedence,
                   _("useless associativity for %s, use %%precedence"), s->tag);
     }
+  free (used_assoc);
+  assoc_free ();
 }