Template
1
0
mirror of https://github.com/bol-van/zapret2.git synced 2026-03-19 15:55:48 +00:00

nfqws2: check malloc result

This commit is contained in:
bol-van
2026-02-06 11:05:54 +03:00
parent 7bb8b1d7b3
commit c5ecc0493d

View File

@@ -170,7 +170,7 @@ static void fuzzPacketData(unsigned int count)
if (bQuit) break;
if (!(k%1000)) DLOG_CONDUP("fuzz ct=%u\n",k);
len = random()%(FUZZ_MAX_PACKET_SIZE+1);
packet = malloc(len); // alloc every time to catch uninitialized reads
if (!(packet = malloc(len))) return; // alloc every time to catch uninitialized reads
fill_random_bytes(packet,len);
if (len)
{