]> granicus.if.org Git - graphviz/commitdiff
circogen mkNodelist: 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:47:43 +0000 (14:47 -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/nodelist.c

index 94c13612d9d1b75b54d71a79474d74bf91dab006..2ee7ded390496a9c29d92b1f823d16d98e9af5f1 100644 (file)
@@ -22,7 +22,7 @@ static nodelistitem_t *init_nodelistitem(Agnode_t * n)
 
 nodelist_t *mkNodelist()
 {
-    nodelist_t *list = NEW(nodelist_t);
+    nodelist_t *list = gv_alloc(sizeof(nodelist_t));
     return list;
 }