mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
- Add IRQL assert to ExFreePagedPool.
svn path=/trunk/; revision=11723
This commit is contained in:
parent
c7802eb216
commit
f5c76d2826
1 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: ppool.c,v 1.32 2004/10/02 16:48:05 navaraf Exp $
|
/* $Id: ppool.c,v 1.33 2004/11/20 21:16:38 navaraf Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -450,6 +450,8 @@ ExFreePagedPool(IN PVOID Block)
|
||||||
PMM_PPOOL_FREE_BLOCK_HEADER NextBlock;
|
PMM_PPOOL_FREE_BLOCK_HEADER NextBlock;
|
||||||
PMM_PPOOL_FREE_BLOCK_HEADER NextNextBlock;
|
PMM_PPOOL_FREE_BLOCK_HEADER NextNextBlock;
|
||||||
|
|
||||||
|
ASSERT_IRQL(APC_LEVEL);
|
||||||
|
|
||||||
#if MM_PPOOL_REDZONE_BYTES
|
#if MM_PPOOL_REDZONE_BYTES
|
||||||
// write out buffer-overrun detection bytes
|
// write out buffer-overrun detection bytes
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue