diff options
author | Masaq- <tilt@techie.com> | 2019-02-23 22:40:24 +0000 |
---|---|---|
committer | Masaq- <tilt@techie.com> | 2019-02-23 22:40:24 +0000 |
commit | 70973ac736e8b669f121a4c96b510e451fd130fc (patch) | |
tree | fb2632388721a5967a8004f7e2309d2b178f1a23 /src/ptunnel.c | |
parent | fa7a0d17d98695332a9bd3c87a655a7eda730d8f (diff) |
set pkt_len to zero after free
Diffstat (limited to 'src/ptunnel.c')
-rw-r--r-- | src/ptunnel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ptunnel.c b/src/ptunnel.c index 87dcc39..fad0944 100644 --- a/src/ptunnel.c +++ b/src/ptunnel.c @@ -668,7 +668,7 @@ void* pt_proxy(void *args) { cur->dst_ip, cur->dst_port, kProto_ack | cur->type_flag, &cur->dest_addr, cur->next_remote_seq, &cur->send_first_ack, &cur->ping_seq, cur->window_size); cur->xfer.icmp_ack_out++; - if (cur->send_ring[idx].pkt && cur->send_ring[idx].pkt->type == kICMP_echo_request) { + if (cur->send_ring[idx].pkt_len > sizeof(icmp_echo_packet_t) && cur->send_ring[idx].pkt->type == kICMP_echo_request) { for (uint16_t e = 0; e < opts.empty_pings; e++) { cur->send_ring[idx].pkt->seq = htons(cur->ping_seq); cur->ping_seq++; |