The handler for the server message get_next_hook was returning the
module name of the current hook, instead of the next one.
This commit is contained in:
parent
6d267e93f2
commit
66da6c85e8
|
@ -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 );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue