From: Jes Sorensen Date: Mon, 6 Dec 2010 14:25:34 +0000 (+0100) Subject: Add missing tracing to qemu_mallocz() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=236e2376818251382f8811d46503581fde798ea3;p=qemu.git Add missing tracing to qemu_mallocz() Signed-off-by: Jes Sorensen Signed-off-by: Kevin Wolf --- 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)