]> granicus.if.org Git - graphviz/commitdiff
neatogen newItem: use cgraph wrapper for allocation
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 18 Nov 2022 01:12:52 +0000 (17:12 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 19 Nov 2022 05:29:08 +0000 (21:29 -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/multispline.c

index 061b756cb501721e7ebd825f67e8d14f9a15d527..57eea9f89ba1851e7f7f7d384148099625cc10d9 100644 (file)
@@ -77,7 +77,7 @@ static int cmpItem(Dt_t * d, int p1[], int p2[], Dtdisc_t * disc)
  */
 static void *newItem(Dt_t * d, item * objp, Dtdisc_t * disc)
 {
-    item *newp = NEW(item);
+    item *newp = gv_alloc(sizeof(item));
 
     (void)d;
     (void)disc;