Commit 59820f0e authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

winex11: Return STATUS_NOT_FOUND when IME update isn't found.

parent 0f6a66e9
......@@ -555,7 +555,7 @@ UINT X11DRV_ImeToAsciiEx( UINT vkey, UINT lparam, const BYTE *state, COMPOSITION
if (!(update = find_ime_update( lparam )))
{
pthread_mutex_unlock( &ime_mutex );
return 0;
return STATUS_NOT_FOUND;
}
if (!update->comp_str) comp_len = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment