]> granicus.if.org Git - graphviz/commitdiff
neatogen sortSites: 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>
Fri, 25 Nov 2022 18:30:51 +0000 (10:30 -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/adjust.c

index 97ae5fb0fb9e963c46f55765deb27f91cc5ff1fe..4e3d47612064bd89cb1ee8e55c80227e9355ee09 100644 (file)
@@ -206,7 +206,7 @@ static void sortSites(void)
     Info_t *ip;
 
     if (sites == 0) {
-       sites = N_GNEW(nsites, Site *);
+       sites = gv_calloc(nsites, sizeof(Site*));
        endSite = sites + nsites;
     }