From: Owen Smith Date: Mon, 17 Apr 2023 13:24:39 +0000 (+0100) Subject: Check for zero byte allocations X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=b847d27e6f1a367a6a2244d08abb83de68d8d3b0;p=pvdrivers%2Fwin%2Fxennet.git Check for zero byte allocations Avoid attempting to allocate zero byte buffers, which can lead to inefficiencies in pool memory usage. Suggested-by: Matthew Sykes Signed-off-by: Owen Smith --- diff --git a/src/xennet/util.h b/src/xennet/util.h index bd980b1..d236c94 100644 --- a/src/xennet/util.h +++ b/src/xennet/util.h @@ -153,6 +153,9 @@ __AllocatePoolWithTag( __analysis_assume(PoolType == NonPagedPool || PoolType == PagedPool); + if (NumberOfBytes == 0) + return NULL; + #if (_MSC_VER >= 1928) // VS 16.9 (EWDK 20344 or later) Buffer = ExAllocatePoolUninitialized(PoolType, NumberOfBytes, Tag); #else