1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-27 18:09:01 +00:00

Fixed compiler warning caused by a possible uninitialized var

This commit is contained in:
luis
2010-06-28 07:47:35 +00:00
parent c32d0c6d66
commit 8aa0a4b5fe

View File

@@ -3414,7 +3414,7 @@ int read_arp_reply_pcap(pcap_t *pd, u8 *sendermac,
u8 *p;
int timedout = 0;
int badcounter = 0;
unsigned int offset;
unsigned int offset=0;
struct timeval tv_start, tv_end;
if (!pd)