Fix: lttng: add-trigger: leak of argpar_item
[lttng-tools.git] / src / bin / lttng / commands / add_trigger.c
index 401fa762ece18648ab2fedd2b0a43f92292ee9f5..2a7b29d522796c88419fc8b332bcb5b280b45e05 100644 (file)
@@ -252,7 +252,7 @@ static int parse_kernel_probe_opts(const char *source,
 
                        *location = lttng_kernel_probe_location_symbol_create(
                                        symbol_name, 0);
-                       if (!location) {
+                       if (!*location) {
                                ERR("Failed to create symbol kernel probe location.");
                                goto error;
                        }
@@ -1114,6 +1114,7 @@ error:
        lttng_action_destroy(action);
        action = NULL;
        free(error);
+       argpar_item_destroy(item);
 end:
        return action;
 }
@@ -1440,6 +1441,7 @@ end:
        free(data_url_arg);
        free(snapshot_output);
        argpar_state_destroy(state);
+       argpar_item_destroy(item);
        return action;
 }
 
This page took 0.023653 seconds and 4 git commands to generate.