]> granicus.if.org Git - graphviz/commitdiff
remove incorrect commented out use of NEW()
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 16 Jun 2020 00:02:00 +0000 (17:02 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 16 Jun 2020 00:08:23 +0000 (17:08 -0700)
This macro takes a type as its argument, not a size. This call would have
resulted in an incorrect allocation of sizeof(size_t) bytes.

lib/label/index.c

index bd3dcd58523a58c97712eaa4520e7c2ed56ef3d7..74fdb2857e275406972ad8b194ac9fdbd11a506b 100644 (file)
@@ -468,14 +468,3 @@ RTreeDelete2(RTree_t * rtp, Rect_t * r, void *data, Node_t * n,
        return 1;
     }
 }
-
-#ifdef UNUSED
-/* Allocate space for a node in the list used in DeletRect to
-** store Nodes that are too empty.
-*/
-struct ListNode *NewListNode()
-{
-    return (struct ListNode *) NEW(sizeof(struct ListNode));
-}
-
-#endif