notification-thread: drain all tracer notification on removal
[lttng-tools.git] / src / bin / lttng / commands / add_trigger.c
index eecda501464c6d07ba96afee6ed3427e8e660dbd..83fd1c4473c437897cf95caf08a49c999cf951f7 100644 (file)
@@ -273,7 +273,7 @@ static int parse_kernel_probe_opts(const char *source,
 
                address = strtoul(s_hex, NULL, 0);
                *location = lttng_kernel_probe_location_address_create(address);
-               if (!location) {
+               if (!*location) {
                        ERR("Failed to create symbol kernel probe location.");
                        goto error;
                }
@@ -1114,9 +1114,10 @@ struct lttng_action *handle_action_simple_session(
 error:
        lttng_action_destroy(action);
        action = NULL;
-       free(error);
        argpar_item_destroy(item);
 end:
+       free(error);
+       argpar_state_destroy(state);
        return action;
 }
 
@@ -1441,6 +1442,7 @@ end:
        free(ctrl_url_arg);
        free(data_url_arg);
        free(snapshot_output);
+       free(max_size_arg);
        argpar_state_destroy(state);
        argpar_item_destroy(item);
        return action;
This page took 0.023494 seconds and 4 git commands to generate.