Hans Leidekker : ntdll: Don't return success from the NtQueryEvent stub.
23 Jun
2009
23 Jun
'09
3:02 p.m.
Module: wine Branch: master Commit: 3a4386679053afdc6d6c5de5b0c0154234c90fe1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3a4386679053afdc6d6c5de5b0... Author: Hans Leidekker <hans(a)codeweavers.com> Date: Tue Jun 23 09:35:48 2009 +0200 ntdll: Don't return success from the NtQueryEvent stub. --- dlls/ntdll/sync.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/ntdll/sync.c b/dlls/ntdll/sync.c index 6051f62..f3f969a 100644 --- a/dlls/ntdll/sync.c +++ b/dlls/ntdll/sync.c @@ -402,7 +402,7 @@ NTSTATUS WINAPI NtQueryEvent ( OUT PULONG ReturnLength) { FIXME("(%p)\n", EventHandle); - return STATUS_SUCCESS; + return STATUS_NOT_IMPLEMENTED; } /*
6113
Age (days ago)
6113
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard