[NTOS:MM] Do not bugcheck when we are freeing a big allocation for which we didn't manage to insert the tag

This commit is contained in:
Jérôme Gardou 2021-02-22 14:38:36 +01:00 committed by Jérôme Gardou
parent f9b89c9961
commit 34630a06ca

View file

@ -2551,7 +2551,9 @@ ExFreePoolWithTag(IN PVOID P,
{
DPRINT1("Freeing pool - invalid tag specified: %.4s != %.4s\n", (char*)&TagToFree, (char*)&Tag);
#if DBG
KeBugCheckEx(BAD_POOL_CALLER, 0x0A, (ULONG_PTR)P, Tag, TagToFree);
/* Do not bugcheck in case this is a big allocation for which we didn't manage to insert the tag */
if (Tag != ' GIB')
KeBugCheckEx(BAD_POOL_CALLER, 0x0A, (ULONG_PTR)P, Tag, TagToFree);
#endif
}