ntdll: Initialize a variable.

Fix an uninitialized pointer in RtlCreateUserThread, caught by
coverity.
This commit is contained in:
Juan Lang 2006-04-10 21:32:33 -07:00 committed by Alexandre Julliard
parent 95859a1d6a
commit fced68672f
1 changed files with 1 additions and 1 deletions

View File

@ -370,7 +370,7 @@ NTSTATUS WINAPI RtlCreateUserThread( HANDLE process, const SECURITY_DESCRIPTOR *
struct ntdll_thread_data *thread_data;
struct ntdll_thread_regs *thread_regs = NULL;
struct startup_info *info = NULL;
void *addr;
void *addr = NULL;
HANDLE handle = 0;
TEB *teb;
DWORD tid = 0;