From: Jérémie Galarneau Date: Mon, 26 Oct 2015 16:11:30 +0000 (-0400) Subject: Clean-up: Use memset() to initialize packet_index X-Git-Tag: v1.4.0-rc1~97 X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=5f75b32d8fb09e51e5f746461abce90572e7ba73 Clean-up: Use memset() to initialize packet_index Signed-off-by: Jérémie Galarneau --- diff --git a/formats/ctf/ctf.c b/formats/ctf/ctf.c index 7d51b7dc..917e9501 100644 --- a/formats/ctf/ctf.c +++ b/formats/ctf/ctf.c @@ -1512,6 +1512,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; } @@ -1543,16 +1544,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) {