From 236e2376818251382f8811d46503581fde798ea3 Mon Sep 17 00:00:00 2001 From: Jes Sorensen Date: Mon, 6 Dec 2010 15:25:34 +0100 Subject: Add missing tracing to qemu_mallocz() Signed-off-by: Jes Sorensen Signed-off-by: Kevin Wolf --- qemu-malloc.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'qemu-malloc.c') diff --git a/qemu-malloc.c b/qemu-malloc.c index 28fb05a481..b9b38514ac 100644 --- a/qemu-malloc.c +++ b/qemu-malloc.c @@ -64,10 +64,13 @@ void *qemu_realloc(void *ptr, size_t size) void *qemu_mallocz(size_t size) { + void *ptr; if (!size && !allow_zero_malloc()) { abort(); } - return qemu_oom_check(calloc(1, size ? size : 1)); + ptr = qemu_oom_check(calloc(1, size ? size : 1)); + trace_qemu_malloc(size, ptr); + return ptr; } char *qemu_strdup(const char *str) -- cgit v1.2.1