mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 20:36:35 +00:00
[WIN32K]
Fix uninitialized variable use. svn path=/trunk/; revision=64826
This commit is contained in:
parent
e0b6d85507
commit
be627c2e59
1 changed files with 1 additions and 1 deletions
|
@ -2019,7 +2019,7 @@ NtUserPostThreadMessage(DWORD idThread,
|
||||||
WPARAM wParam,
|
WPARAM wParam,
|
||||||
LPARAM lParam)
|
LPARAM lParam)
|
||||||
{
|
{
|
||||||
BOOL ret;
|
BOOL ret = FALSE;
|
||||||
PETHREAD peThread;
|
PETHREAD peThread;
|
||||||
PTHREADINFO pThread;
|
PTHREADINFO pThread;
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
|
|
Loading…
Reference in a new issue