]> granicus.if.org Git - graphviz/commitdiff
glcomp glNewFontFromParent: use cgraph wrapper for allocation
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 17 Sep 2022 00:33:13 +0000 (17:33 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 21 Sep 2022 00:17:10 +0000 (17:17 -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/glcomp/glcompfont.c

index e023aff1a8219537af2d0d0eb108b43ec2298845..d66a2b9465c4c912f2e8bee7684ef1ed8bc5fcf2 100644 (file)
@@ -14,7 +14,6 @@
 #include <glcomp/glpangofont.h>
 #include <glcomp/glcomptexture.h>
 #include <glcomp/glutils.h>
-#include <common/memory.h>
 #include <GL/glut.h>
 #include <stddef.h>
 
@@ -81,7 +80,7 @@ glCompFont *glNewFont (glCompSet * s, char *text, glCompColor * c,glCompFontType
 glCompFont *glNewFontFromParent(glCompObj * o, char *text)
 {
     glCompCommon *parent;
-    glCompFont *font = NEW(glCompFont);
+    glCompFont *font = gv_alloc(sizeof(glCompFont));
     parent = o->common.parent;
     if (parent) {
        parent = o->common.parent;