From 09edfdc32fb58135f76b0f6d22f48d89f157fe08 Mon Sep 17 00:00:00 2001 From: Phillip Susi Date: Sun, 5 Dec 1999 23:23:50 +0000 Subject: [PATCH] forgot to initialize Create member of OBJECT_TYPE for threads svn path=/trunk/; revision=827 --- reactos/ntoskrnl/ps/thread.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/ps/thread.c b/reactos/ntoskrnl/ps/thread.c index 689a2b6c3c4..d191443a04a 100644 --- a/reactos/ntoskrnl/ps/thread.c +++ b/reactos/ntoskrnl/ps/thread.c @@ -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);