circogen circomps: 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>
Sun, 1 Jan 2023 00:32:15 +0000 (16:32 -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/circularinit.c

index f82e590803c3a998df7ab11987128977695041e8..de77a15496dfd980d08ab23603dc6abee8dbc97b 100644 (file)
@@ -150,7 +150,7 @@ static Agraph_t **circomps(Agraph_t * g, int *cnt)
     /* Finally, add edge data to edges */
     for (n = agfstnode(dg); n; n = agnxtnode(dg, n)) {
        for (e = agfstout(dg, n); e; e = agnxtout(dg, e)) {
-           ED_alg(e) = NEW(edata);
+           ED_alg(e) = gv_alloc(sizeof(edata));
        }
     }