]> granicus.if.org Git - graphviz/commitdiff
neatogen makeSelfArcs: 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:47 +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 5766163324878ee36f5f0d051f0efaf8065ad31e..771ab97eb1ac5edfe918c4a6ad507fe7c6c913f5 100644 (file)
@@ -245,7 +245,7 @@ void makeSelfArcs(edge_t * e, int stepx)
        makePortLabels(e);
     } else {
        int i;
-       edge_t **edges = N_GNEW(cnt, edge_t *);
+       edge_t **edges = gv_calloc(cnt, sizeof(edge_t*));
        for (i = 0; i < cnt; i++) {
            edges[i] = e;
            e = ED_to_virt(e);