user.exe: Don't try calling the WH_CALLWNDPROC hook if no hook was set.
This commit is contained in:
parent
517f5ba596
commit
33807ac093
|
@ -192,7 +192,7 @@ void call_WH_CALLWNDPROC_hook( HWND16 hwnd, UINT16 msg, WPARAM16 wp, LPARAM lp )
|
||||||
CWPSTRUCT16 cwp;
|
CWPSTRUCT16 cwp;
|
||||||
struct hook16_queue_info *info = get_hook_info( FALSE );
|
struct hook16_queue_info *info = get_hook_info( FALSE );
|
||||||
|
|
||||||
if (!info->proc[WH_CALLWNDPROC - WH_MINHOOK]) return;
|
if (!info || !info->proc[WH_CALLWNDPROC - WH_MINHOOK]) return;
|
||||||
|
|
||||||
cwp.hwnd = hwnd;
|
cwp.hwnd = hwnd;
|
||||||
cwp.message = msg;
|
cwp.message = msg;
|
||||||
|
|
Loading…
Reference in New Issue