]> granicus.if.org Git - graphviz/commitdiff
Remove redundant memory reclamation
authorEmden Gansner <erg@research.att.com>
Tue, 25 Oct 2011 19:32:26 +0000 (15:32 -0400)
committerEmden Gansner <erg@research.att.com>
Tue, 25 Oct 2011 19:32:26 +0000 (15:32 -0400)
lib/dotgen/rank.c

index 2fa21e41f896350fb475e2317a0d09f7964ae899..957e821331f2ba6e5a084a7630107fbcb5c61cce 100644 (file)
@@ -1231,16 +1231,6 @@ int infosizes[] = {
 };
 #endif
 
-static void 
-cleanLevelGraph (graph_t * g)
-{
-    node_t* n;
-    for (n = agfstnode(g); n; n = agnxtnode(g, n)) {
-       free_list (ND_out(n));
-       free_list (ND_in(n));
-    }
-}
-
 void dot2_rank(graph_t * g, aspect_t* asp)
 {
     int ssize;
@@ -1286,7 +1276,6 @@ void dot2_rank(graph_t * g, aspect_t* asp)
 #ifdef DEBUG
     fprintf (stderr, "Xg %d nodes %d edges\n", agnnodes(Xg), agnedges(Xg));
 #endif
-    cleanLevelGraph (Xg);
     agclose(Xg);
 }