]> granicus.if.org Git - graphviz/commitdiff
common newItem: 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, 24 Dec 2022 18:48:38 +0000 (10:48 -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/common/utils.c

index 62ed7342ba467d1abfe459f493b4192674995e54..144f1c159bb2a4f3282e96db6ddd3204f1b144c4 100644 (file)
@@ -914,7 +914,7 @@ static int cmpItem(Dt_t * d, void *p1[], void *p2[], Dtdisc_t * disc)
 static void *newItem(Dt_t * d, item * objp, Dtdisc_t * disc)
 {
     (void)d;
-    item *newp = NEW(item);
+    item *newp = gv_alloc(sizeof(item));
 
     (void)disc;
     newp->p[0] = objp->p[0];