From af15e7f597ad03d541a43199b29e422971e48ed8 Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Wed, 27 May 2020 20:58:03 +0200 Subject: set ip_pkt to NULL during definition Signed-off-by: Toni Uhlig --- src/pkt.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pkt.c b/src/pkt.c index 90ae7da..64feabf 100644 --- a/src/pkt.c +++ b/src/pkt.c @@ -215,7 +215,7 @@ static proxy_desc_t * get_proxy_descriptor(uint16_t id_no) */ void handle_packet(char * buf, unsigned bytes, int is_pcap, struct sockaddr_in * addr, int icmp_sock) { - ip_packet_t * ip_pkt; + ip_packet_t * ip_pkt = NULL; icmp_echo_packet_t * pkt; ping_tunnel_pkt_t * pt_pkt; proxy_desc_t * cur; @@ -237,7 +237,6 @@ void handle_packet(char * buf, unsigned bytes, int is_pcap, struct sockaddr_in * } if (opts.udp || opts.unprivileged) { - ip_pkt = NULL; pkt = (icmp_echo_packet_t *)buf; pt_pkt = (ping_tunnel_pkt_t *)pkt->data; } else { -- cgit v1.2.3