- "BIG0" isn't a reserved tag, but "BIG " is.

svn path=/trunk/; revision=42922
This commit is contained in:
Stefan Ginsberg 2009-08-24 18:36:03 +00:00
parent 59c14c8c0f
commit 87db4c425c

View file

@ -50,7 +50,7 @@ EiAllocatePool(POOL_TYPE PoolType,
if (Tag == 0)
KeBugCheckEx(BAD_POOL_CALLER, 0x9b, PoolType, NumberOfBytes, (ULONG_PTR)Caller);
if (Tag == '0GIB')
if (Tag == ' GIB')
KeBugCheckEx(BAD_POOL_CALLER, 0x9c, PoolType, NumberOfBytes, (ULONG_PTR)Caller);
#define IS_LETTER_OR_DIGIT(c) (((c) >= 'a' && (c) <= 'z') || ((c) >= 'A' && (c) <= 'Z') || ((c) >= '0' && (c) <= '9'))