From 34d29a0d710f94a2ac4ec660547c963af25b2512 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Mon, 1 Jul 2013 23:01:16 +0200 Subject: src: Initialize const variables of socket_wrapper_pcap_file(). --- src/socket_wrapper.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/socket_wrapper.c b/src/socket_wrapper.c index 240f3f6..b336514 100644 --- a/src/socket_wrapper.c +++ b/src/socket_wrapper.c @@ -1214,10 +1214,10 @@ static const char *socket_wrapper_pcap_file(void) { static int initialized = 0; static const char *s = NULL; - static const struct swrap_file_hdr h; - static const struct swrap_packet_frame f; - static const union swrap_packet_ip i; - static const union swrap_packet_payload p; + static const struct swrap_file_hdr h = {0}; + static const struct swrap_packet_frame f = {0}; + static const union swrap_packet_ip i = {{0}}; + static const union swrap_packet_payload p = {{0}}; if (initialized == 1) { return s; -- cgit