mirror of
https://github.com/reactos/reactos.git
synced 2025-04-06 05:34:22 +00:00
fixed bug in MmAllocateContiguousAlignedMemory due to uninitialized BaseAddress local
svn path=/trunk/; revision=1733
This commit is contained in:
parent
e065bf41ff
commit
cf4a06ff33
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: cont.c,v 1.10 2001/03/25 02:34:28 dwelch Exp $
|
||||
/* $Id: cont.c,v 1.11 2001/03/26 04:38:39 phreak Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -34,7 +34,7 @@ MmAllocateContiguousAlignedMemory(IN ULONG NumberOfBytes,
|
|||
{
|
||||
PMEMORY_AREA MArea;
|
||||
NTSTATUS Status;
|
||||
PVOID BaseAddress;
|
||||
PVOID BaseAddress = 0;
|
||||
PVOID PBase;
|
||||
ULONG i;
|
||||
|
||||
|
@ -50,7 +50,7 @@ MmAllocateContiguousAlignedMemory(IN ULONG NumberOfBytes,
|
|||
{
|
||||
return(NULL);
|
||||
}
|
||||
|
||||
DPRINT( "Base = %x\n", BaseAddress );
|
||||
PBase = MmGetContinuousPages(NumberOfBytes,
|
||||
HighestAcceptableAddress,
|
||||
Alignment);
|
||||
|
|
Loading…
Reference in a new issue