]> granicus.if.org Git - graphviz/commitdiff
common new_queue: use cgraph wrappers 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 6dedc975bcf260937ba1d00d25492973a109fa57..e670633a0434c4c072352b7e6031bd15caa8080e 100644 (file)
  */
 nodequeue *new_queue(int sz)
 {
-    nodequeue *q = NEW(nodequeue);
+    nodequeue *q = gv_alloc(sizeof(nodequeue));
 
     if (sz <= 1)
        sz = 2;
-    q->head = q->tail = q->store = N_NEW(sz, node_t *);
+    q->head = q->tail = q->store = gv_calloc(sz, sizeof(node_t*));
     q->limit = q->store + sz;
     return q;
 }