mirror of
https://github.com/nmap/nmap.git
synced 2026-08-03 22:29:06 +00:00
Fixed compiler warning caused by a possible uninitialized var
This commit is contained in:
parent
c32d0c6d66
commit
8aa0a4b5fe
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue