]> granicus.if.org Git - graphviz/commitdiff
dotgen cloneNode: use cgraph wrapper for allocation
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 14 Sep 2022 01:36:17 +0000 (18:36 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 14 Sep 2022 01:39:23 +0000 (18:39 -0700)
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/dotgen/dotsplines.c

index c2f35b5adff9b594a7b8ea8c979b082e1112888c..881b66125657498ce9854c4d0454725a39fe3e95 100644 (file)
@@ -985,7 +985,7 @@ static node_t *cloneNode(graph_t *g, node_t *orign) {
     agcopyattr (orign, n);
     if (shapeOf(orign) == SH_RECORD) {
        int lbllen = strlen(ND_label(orign)->text);
-        char* buf = N_GNEW(lbllen+3,char);
+        char* buf = gv_calloc(lbllen + 3, sizeof(char));
         sprintf (buf, "{%s}", ND_label(orign)->text);
        agset (n, "label", buf);
         free(buf);