From: Mathieu Desnoyers Date: Wed, 26 Nov 2014 17:25:55 +0000 (-0500) Subject: Fix: lttng add_context.c: use zmalloc X-Git-Tag: v2.4.3~19 X-Git-Url: http://git.liburcu.org/?a=commitdiff_plain;h=d8c94ed9886dd1190381c6068834aa29da1659ad;hp=d3494c130947643d505a212628e060f46296c5e9;p=lttng-tools.git Fix: lttng add_context.c: use zmalloc Signed-off-by: Mathieu Desnoyers Signed-off-by: Jérémie Galarneau --- diff --git a/src/bin/lttng/commands/add_context.c b/src/bin/lttng/commands/add_context.c index e823b1e6f..880640057 100644 --- a/src/bin/lttng/commands/add_context.c +++ b/src/bin/lttng/commands/add_context.c @@ -469,7 +469,7 @@ int cmd_add_context(int argc, const char **argv) goto end; } - type = malloc(sizeof(struct ctx_type)); + type = zmalloc(sizeof(struct ctx_type)); if (type == NULL) { perror("malloc ctx_type"); ret = CMD_FATAL;