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:
Alberto Massari 2002-12-17 21:01:01 +00:00 committed by Alexandre Julliard
parent 6d267e93f2
commit 66da6c85e8
1 changed files with 1 additions and 1 deletions

View File

@ -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 );
}
}