Clean-up: Use memset() to initialize packet_index
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Mon, 26 Oct 2015 16:11:30 +0000 (12:11 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Mon, 26 Oct 2015 16:11:30 +0000 (12:11 -0400)
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
formats/ctf/ctf.c

index a2ef43e242a28df7584e6d0180a56f7d6ce633aa..ef85f4bda757803540ba524e6dd177bdac9fd0d2 100644 (file)
@@ -1510,6 +1510,7 @@ int create_stream_one_packet_index(struct ctf_stream_pos *pos,
        int ret;
 
 begin:
+       memset(&packet_index, 0, sizeof(packet_index));
        if (!pos->mmap_offset) {
                first_packet = 1;
        }
@@ -1541,16 +1542,6 @@ begin:
        pos->offset = 0;        /* Position of the packet header */
 
        packet_index.offset = pos->mmap_offset;
-       packet_index.content_size = 0;
-       packet_index.packet_size = 0;
-       packet_index.ts_real.timestamp_begin = 0;
-       packet_index.ts_real.timestamp_end = 0;
-       packet_index.ts_cycles.timestamp_begin = 0;
-       packet_index.ts_cycles.timestamp_end = 0;
-       packet_index.events_discarded = 0;
-       packet_index.events_discarded_len = 0;
-       packet_index.stream_instance_id = 0;
-       packet_index.packet_seq_num = 0;
 
        /* read and check header, set stream id (and check) */
        if (file_stream->parent.trace_packet_header) {
This page took 0.026261 seconds and 4 git commands to generate.