Fix uninitialized variable use.

svn path=/trunk/; revision=64826
This commit is contained in:
Timo Kreuzer 2014-10-19 16:37:27 +00:00
parent e0b6d85507
commit be627c2e59

View file

@ -2019,7 +2019,7 @@ NtUserPostThreadMessage(DWORD idThread,
WPARAM wParam,
LPARAM lParam)
{
BOOL ret;
BOOL ret = FALSE;
PETHREAD peThread;
PTHREADINFO pThread;
NTSTATUS Status;