mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Fixed missing initialization in PsAllocateCallback
svn path=/trunk/; revision=3093
This commit is contained in:
parent
5e1123c888
commit
97970adc7d
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: thread.c,v 1.94 2002/06/04 15:26:58 dwelch Exp $
|
||||
/* $Id: thread.c,v 1.95 2002/06/15 11:27:28 jfilby Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -571,7 +571,7 @@ NtCallbackReturn (PVOID Result,
|
|||
PVOID STATIC
|
||||
PsAllocateCallbackStack(ULONG StackSize)
|
||||
{
|
||||
PVOID KernelStack;
|
||||
PVOID KernelStack = NULL;
|
||||
NTSTATUS Status;
|
||||
PMEMORY_AREA StackArea;
|
||||
ULONG i;
|
||||
|
|
Loading…
Reference in a new issue