fixed uninitialized variable warning
Modified: trunk/reactos/ntoskrnl/mm/anonmem.c
--- trunk/reactos/ntoskrnl/mm/anonmem.c 2005-11-25 21:37:23 UTC (rev 19572) +++ trunk/reactos/ntoskrnl/mm/anonmem.c 2005-11-25 21:38:37 UTC (rev 19573) @@ -990,7 +990,7 @@
PULONG ResultLength) { PMM_REGION Region;
- PVOID RegionBase;
+ PVOID RegionBase = NULL;
Info->BaseAddress = (PVOID)PAGE_ROUND_DOWN(Address);