diff options
author | Guy Harris <guy@alum.mit.edu> | 2015-09-13 19:29:13 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2015-09-13 19:29:13 -0700 |
commit | 5dd09155abcc9a80ffdf49ff03e2bff5fb0aa31f (patch) | |
tree | e80a53099934a7f6b8bbabd51bead57fc562947f /pcap-win32.c | |
parent | cbb67d7575fc4abef56317f84d56ea7f7025d956 (diff) |
We got rid of the Packet member of pcap_t, so don't free it.
Diffstat (limited to 'pcap-win32.c')
-rw-r--r-- | pcap-win32.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/pcap-win32.c b/pcap-win32.c index 717da2e1..63ba6302 100644 --- a/pcap-win32.c +++ b/pcap-win32.c @@ -763,10 +763,6 @@ pcap_cleanup_win32(pcap_t *p) PacketCloseAdapter(p->adapter); p->adapter = NULL; } - if (p->Packet) { - PacketFreePacket(p->Packet); - p->Packet = NULL; - } pcap_cleanup_live_common(p); } |