mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
forgot to initialize Create member of OBJECT_TYPE for threads
svn path=/trunk/; revision=827
This commit is contained in:
parent
ae12418822
commit
09edfdc32f
1 changed files with 2 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: thread.c,v 1.32 1999/12/02 20:53:55 dwelch Exp $
|
||||
/* $Id: thread.c,v 1.33 1999/12/05 23:23:50 phreak Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -467,6 +467,7 @@ VOID PsInitThreadManagment(VOID)
|
|||
PsThreadType->Security = NULL;
|
||||
PsThreadType->QueryName = NULL;
|
||||
PsThreadType->OkayToClose = NULL;
|
||||
PsThreadType->Create = NULL;
|
||||
|
||||
PsInitializeThread(NULL,&FirstThread,&FirstThreadHandle,
|
||||
THREAD_ALL_ACCESS,NULL);
|
||||
|
|
Loading…
Reference in a new issue