From: erg Date: Tue, 25 Mar 2008 19:49:41 +0000 (+0000) Subject: Remove redundant allocation of Hierarchy structure. X-Git-Tag: LAST_LIBGRAPH~32^2~4442 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6ec54e542458f8c5852af9ff5504668a9ef55eb3;p=graphviz Remove redundant allocation of Hierarchy structure. --- diff --git a/cmd/smyrna/hier.c b/cmd/smyrna/hier.c index 33e1d5c26..6b6ec4c13 100644 --- a/cmd/smyrna/hier.c +++ b/cmd/smyrna/hier.c @@ -197,7 +197,7 @@ Hierarchy *makeHier(int nn, int ne, vtx_data * graph, double *x_coords, vtx_data *delaunay; ex_vtx_data *geom_graph; int ngeom_edges; - Hierarchy *hp = NEW(Hierarchy); + Hierarchy *hp; delaunay = UG_graph(x_coords, y_coords, nn, 0);