From: Jérémie Galarneau Date: Tue, 9 Mar 2021 21:21:11 +0000 (-0500) Subject: Fix: lttng: add-trigger: erroneous null check on location return X-Git-Tag: v2.13.0-rc1~254 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=f6e30a8ad86ac3275c23a7dc7ee223c665b10c97 Fix: lttng: add-trigger: erroneous null check on location return 1447042 Dereference before null check There may be a null pointer dereference, or else the comparison against null is unnecessary. In parse_kernel_probe_opts: All paths that lead to this null pointer comparison already dereference the pointer earlier (CWE-476) Reported-by: Coverity Scan Signed-off-by: Jérémie Galarneau Change-Id: Ifcaf1b1854ea7177084ef5433f5a1b386381676a --- diff --git a/src/bin/lttng/commands/add_trigger.c b/src/bin/lttng/commands/add_trigger.c index 19a1c59e7..e4342cf85 100644 --- a/src/bin/lttng/commands/add_trigger.c +++ b/src/bin/lttng/commands/add_trigger.c @@ -237,7 +237,7 @@ static int parse_kernel_probe_opts(const char *source, *location = lttng_kernel_probe_location_symbol_create( symbol_name, offset); - if (!location) { + if (!*location) { ERR("Failed to create symbol kernel probe location."); goto error; }