From: Jérémie Galarneau Date: Fri, 15 Apr 2022 05:29:46 +0000 (-0400) Subject: Fix: lttng: enable-rotation: leak of command parameter X-Git-Url: https://git.liburcu.org/?p=lttng-tools.git;a=commitdiff_plain;h=504021487aa32ab2808d8a483acca552159f5f52 Fix: lttng: enable-rotation: leak of command parameter ==1759491==ERROR: LeakSanitizer: detected memory leaks Direct leak of 6 byte(s) in 1 object(s) allocated from: #0 0x7fdbdc94add9 in __interceptor_malloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:145 #1 0x7fdbdc4a0c09 (/usr/lib/libpopt.so.0+0x3c09) Signed-off-by: Jérémie Galarneau Change-Id: I29cc6ec4390e71829107f309f162247b9be2868c --- diff --git a/src/bin/lttng/commands/enable_rotation.cpp b/src/bin/lttng/commands/enable_rotation.cpp index 223d47cca..1b79da148 100644 --- a/src/bin/lttng/commands/enable_rotation.cpp +++ b/src/bin/lttng/commands/enable_rotation.cpp @@ -179,6 +179,10 @@ int cmd_enable_rotation(int argc, const char **argv) } while ((opt = poptGetNextOpt(pc)) != -1) { + if (opt_arg) { + free(opt_arg); + opt_arg = nullptr; + } switch (opt) { case OPT_HELP: SHOW_HELP(); @@ -333,6 +337,7 @@ end: if (free_session_name) { free(session_name); } + free(opt_arg); return cmd_ret; error: