avoid crashing when receiving a packet that is too large
This commit is contained in:
parent
5fe30d306f
commit
9336e15197
|
@ -410,6 +410,8 @@ void LAN_RXCallback(u_char* blarg, const struct pcap_pkthdr* header, const u_cha
|
||||||
{
|
{
|
||||||
while (PCapRXNum > 0);
|
while (PCapRXNum > 0);
|
||||||
|
|
||||||
|
if (header->len > 2048-64) return;
|
||||||
|
|
||||||
PCapPacketLen = header->len;
|
PCapPacketLen = header->len;
|
||||||
memcpy(PCapPacketBuffer, data, PCapPacketLen);
|
memcpy(PCapPacketBuffer, data, PCapPacketLen);
|
||||||
PCapRXNum = 1;
|
PCapRXNum = 1;
|
||||||
|
|
Loading…
Reference in New Issue