Commit 66da6c85 authored by Alberto Massari's avatar Alberto Massari Committed by Alexandre Julliard

The handler for the server message get_next_hook was returning the

module name of the current hook, instead of the next one.
parent 6d267e93
......@@ -366,6 +366,6 @@ DECL_HANDLER(get_next_hook)
reply->proc = next->proc;
reply->prev_unicode = hook->unicode;
reply->next_unicode = next->unicode;
if (hook->module) set_reply_data( hook->module, hook->module_size );
if (next->module) set_reply_data( next->module, next->module_size );
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment