]> granicus.if.org Git - graphviz/commitdiff
neatogen make_barriers: 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>
Sat, 3 Dec 2022 20:50:07 +0000 (12:50 -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/neatogen/neatosplines.c

index 1950ae6a420b8717c7a21b317805ac75f211a916..487ee49b8ff4e4e2e2495e40d2727ea19cb9b97f 100644 (file)
@@ -10,7 +10,7 @@
 
 
 #include "config.h"
-
+#include <cgraph/alloc.h>
 #include <cgraph/unreachable.h>
 #include <neatogen/neato.h>
 #include <neatogen/adjust.h>
@@ -44,7 +44,6 @@ make_barriers(Ppoly_t ** poly, int npoly, int pp, int qp,
              Pedge_t ** barriers, int *n_barriers)
 {
     int i, j, k, n, b;
-    Pedge_t *bar;
 
     n = 0;
     for (i = 0; i < npoly; i++) {
@@ -54,7 +53,7 @@ make_barriers(Ppoly_t ** poly, int npoly, int pp, int qp,
            continue;
        n += poly[i]->pn;
     }
-    bar = N_GNEW(n, Pedge_t);
+    Pedge_t *bar = gv_calloc(n, sizeof(Pedge_t));
     b = 0;
     for (i = 0; i < npoly; i++) {
        if (i == pp)