mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
missing initialization of Thread->Tcb.WaitBlockList
svn path=/trunk/; revision=872
This commit is contained in:
parent
33009b967e
commit
a409988b36
1 changed files with 2 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: create.c,v 1.1 1999/12/13 22:04:41 dwelch Exp $
|
||||
/* $Id: create.c,v 1.2 1999/12/14 18:35:19 phreak Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -149,6 +149,7 @@ NTSTATUS PsInitializeThread(HANDLE ProcessHandle,
|
|||
Thread->Tcb.WaitIrql = PASSIVE_LEVEL;
|
||||
Thread->ThreadsProcess = Process;
|
||||
KeInitializeDpc( &Thread->Tcb.TimerDpc, PiTimeoutThread, Thread );
|
||||
Thread->Tcb.WaitBlockList = NULL;
|
||||
|
||||
KeInitializeDispatcherHeader(&Thread->Tcb.DispatcherHeader,
|
||||
InternalThreadType,
|
||||
|
|
Loading…
Reference in a new issue