Fix: lttng_trace_archive_location_serialize is called on freed memory
[lttng-tools.git] / src / bin / lttng-sessiond / cmd.c
index eb5da1b76c44b70dcaf9fa221cb07fef8d2b0cdd..3146126b2c44f3a1e2d761e507174160c9a63e14 100644 (file)
@@ -3303,6 +3303,7 @@ void cmd_destroy_session_reply(const struct ltt_session *session,
        payload_size_before_location = payload.size;
        comm_ret = lttng_trace_archive_location_serialize(location,
                        &payload);
+       lttng_trace_archive_location_put(location);
        if (comm_ret < 0) {
                ERR("Failed to serialize the location of the trace archive produced during the destruction of session \"%s\"",
                                session->name);
This page took 0.023839 seconds and 5 git commands to generate.