Fix: lttng: add-trigger: erroneous null check on location return
[lttng-tools.git] / src / bin / lttng / commands / add_trigger.c
index 19a1c59e76e80a960f95d8223711a91465206aa9..e4342cf85d99a7dfb149f85c702bd57cf99e7bfd 100644 (file)
@@ -237,7 +237,7 @@ static int parse_kernel_probe_opts(const char *source,
 
                *location = lttng_kernel_probe_location_symbol_create(
                                symbol_name, offset);
 
                *location = lttng_kernel_probe_location_symbol_create(
                                symbol_name, offset);
-               if (!location) {
+               if (!*location) {
                        ERR("Failed to create symbol kernel probe location.");
                        goto error;
                }
                        ERR("Failed to create symbol kernel probe location.");
                        goto error;
                }
This page took 0.023344 seconds and 4 git commands to generate.