Fix a hotkey-related crash

This commit is contained in:
Richard Stanway 2013-07-21 14:13:01 -04:00
parent 27533c1b0a
commit b35d5f215f

View File

@ -575,6 +575,9 @@ void OBS::CallHotkey(DWORD hotkeyID, bool bDown)
OSLeaveMutex(hHotkeyMutex);
if (!hotkeyProc)
return;
hotkeyProc(hotkey, param, bDown);
}