Warning fix: possible use of uninitialized variable
[lttng-tools.git] / src / bin / lttng-sessiond / cmd.c
index aa030d3b1253f45a716cfa2386c8282c2173611a..ba963ffc53c5e15f44ac756ce2842f9767d27ff5 100644 (file)
@@ -188,6 +188,8 @@ static int get_ust_runtime_stats(struct ltt_session *session,
        struct ltt_ust_session *usess;
 
        usess = session->ust_session;
+       assert(discarded_events);
+       assert(lost_packets);
 
        if (!usess || !session->has_been_started) {
                *discarded_events = 0;
This page took 0.022794 seconds and 4 git commands to generate.