mirror of
https://github.com/reactos/reactos.git
synced 2025-07-30 19:41:57 +00:00
[NTOSKRNL/MM]
- Fix the use of an uninitialized variable. svn path=/trunk/; revision=49850
This commit is contained in:
parent
b0fb94b1f3
commit
14dc931ab1
1 changed files with 1 additions and 1 deletions
|
@ -248,7 +248,7 @@ VOID
|
||||||
NTAPI
|
NTAPI
|
||||||
ExpCheckPoolBlocks(IN PVOID Block)
|
ExpCheckPoolBlocks(IN PVOID Block)
|
||||||
{
|
{
|
||||||
BOOLEAN FoundBlock;
|
BOOLEAN FoundBlock = FALSE;
|
||||||
SIZE_T Size = 0;
|
SIZE_T Size = 0;
|
||||||
PPOOL_HEADER Entry;
|
PPOOL_HEADER Entry;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue