Change behaviour of stream-intersection with multiple traces
[babeltrace.git] / formats / ctf-text / ctf-text.c
index b57eb93dc931d1a0ef3ecb0ad9fb339380db756c..26df6eed2bc49fae320f913412eb08536b2f6a56 100644 (file)
@@ -547,6 +547,10 @@ struct bt_trace_descriptor *ctf_text_open_trace(const char *path, int flags,
        FILE *fp;
 
        pos = g_new0(struct ctf_text_stream_pos, 1);
        FILE *fp;
 
        pos = g_new0(struct ctf_text_stream_pos, 1);
+       if (!pos) {
+               goto error;
+       }
+       init_trace_descriptor(&pos->trace_descriptor);
 
        pos->last_real_timestamp = -1ULL;
        pos->last_cycles_timestamp = -1ULL;
 
        pos->last_real_timestamp = -1ULL;
        pos->last_cycles_timestamp = -1ULL;
This page took 0.023698 seconds and 4 git commands to generate.