]> granicus.if.org Git - graphviz/commitdiff
fdpgen init_node: use cgraph wrapper for allocation
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 18 Nov 2022 01:14:41 +0000 (17:14 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 23 Nov 2022 04:18:24 +0000 (20:18 -0800)
The lib/cgraph/alloc.h wrappers are similar to the older lib/common/memory.h
wrappers except (1) they are header-only and (2) they live in a directory
(cgraph) that is at the root of the dependency tree. The long term plan is to
replace all use of lib/common/memory.h with lib/cgraph/alloc.h.

lib/fdpgen/fdpinit.c

index e76a12d12739928db28fae125d123dc54d91ea5e..018c5aa4614b5e3aeffc3c427f89787e601b54a8 100644 (file)
@@ -18,6 +18,7 @@
 /* uses PRIVATE interface */
 #define FDP_PRIVATE 1
 
+#include    <cgraph/alloc.h>
 #include    <fdpgen/tlayout.h>
 #include    <neatogen/neatoprocs.h>
 #include    <cgraph/agxbuf.h>
@@ -74,7 +75,7 @@ static void init_edge(edge_t * e, attrsym_t * E_len)
 static void init_node(node_t * n)
 {
     common_init_node(n);
-    ND_pos(n) = N_NEW(GD_ndim(agraphof(n)), double);
+    ND_pos(n) = gv_calloc(GD_ndim(agraphof(n)), sizeof(double));
     gv_nodesize(n, GD_flip(agraphof(n)));
 }