mirror of
https://github.com/reactos/wine.git
synced 2025-02-18 03:48:01 +00:00
Fix a null pointer crash in ImmGetOpenStatus.
This commit is contained in:
parent
ef104680ed
commit
caa44e6e0a
@ -612,10 +612,12 @@ UINT WINAPI ImmGetIMEFileNameW(
|
||||
*/
|
||||
BOOL WINAPI ImmGetOpenStatus(HIMC hIMC)
|
||||
{
|
||||
InputContextData *data = (InputContextData*)hIMC;
|
||||
InputContextData *data = (InputContextData*)hIMC;
|
||||
|
||||
FIXME("(%p): semi-stub\n", hIMC);
|
||||
|
||||
if (!data) return FALSE;
|
||||
|
||||
return data->bOpen;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user