]> granicus.if.org Git - graphviz/commitdiff
circogen position: use cgraph wrapper for allocation
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 20 Nov 2022 20:02:53 +0000 (12:02 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 24 Nov 2022 22:45:53 +0000 (14:45 -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/circogen/circpos.c

index 79d3e02a80bab1dccc0a25040775f91fff122b5b..1d700d2e28d4fa89edcfc30e37179582ac08ae23 100644 (file)
@@ -10,7 +10,7 @@
 
 
 #include "config.h"
-
+#include <cgraph/alloc.h>
 /* TODO:
  * If cut point is in exactly 2 blocks, expand block circles to overlap
  * especially in the case where one block is the sole child of the other.
@@ -338,7 +338,7 @@ static double position(int childCount, int length, nodelist_t *path,
     double maxRadius = 0.0;
     double angle;
     double theta = 0.0;
-    posinfo_t* parents = N_NEW(childCount, posinfo_t);
+    posinfo_t* parents = gv_calloc(childCount, sizeof(posinfo_t));
     int num_parents = 0;
     posinfo_t* next;
     posinfo_t* curr;