Skip to content
Snippets Groups Projects
Commit 6c5e2b67 authored by Bill Medland's avatar Bill Medland Committed by Alexandre Julliard
Browse files

Correct UnhookWindowsHook: clear the handle so that the server doesn't

try to use it.
parent 774c5f77
No related branches found
No related tags found
No related merge requests found
......@@ -363,6 +363,7 @@ BOOL WINAPI UnhookWindowsHook( INT id, HOOKPROC proc )
SERVER_START_REQ( remove_hook )
{
req->handle = 0;
req->id = id;
req->proc = proc;
ret = !wine_server_call_err( req );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment