summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2009-03-19 10:38:43 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2009-03-19 10:38:43 +0000
commit8d4f996c86a9b1d0dbbb063be20c322927d2509c (patch)
treeea56be3cf58ede7605e24658df4073448a846aac
parentdda7c33ba7235e17a9100362599f02b38f72cd8e (diff)
Class more functions as allocators.
-rw-r--r--src/frames.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/frames.c b/src/frames.c
index 2532617..bddc49f 100644
--- a/src/frames.c
+++ b/src/frames.c
@@ -238,13 +238,17 @@ _frames_init_alloc_fns (Frames *frames)
"realloc",
"memalign",
+ "vasprintf",
+
"g_.*alloc",
"([sS]trn?|[mM]em)dup",
"ft_.*alloc", "FT_New_Memory", /* FreeType */
"_hb_.*alloc", /* HarfBuzz */
"X.*alloc", /* xorg */
- "^alloc"
+ "^alloc",
+ "_(new|create)$",
+ "(New|Create)$",
};
guint n;