Fix: src.ctf.lttng-live: using `last_inactivity_ts` uninitialized
[babeltrace.git] / src / plugins / ctf / lttng-live / lttng-live.h
index 82f39a0fabb4baf115135a60a2f21f040c9b6f3a..be235a7d4b04c633f086babe88833c369ee53060 100644 (file)
@@ -78,7 +78,10 @@ struct lttng_live_stream_iterator {
         * Clock Snapshot value of the last message iterator inactivity message
         * sent downstream.
         */
-       uint64_t last_inactivity_ts;
+       struct {
+               bool is_set;
+               uint64_t value;
+       } last_inactivity_ts;
 
        /*
         * Clock Snapshot value of the current message iterator inactivity
This page took 0.024555 seconds and 4 git commands to generate.