1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

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

This commit is contained in:
Rémi Bernon 2024-01-10 21:03:48 +01:00 committed by Alexandre Julliard
parent 0f6a66e919
commit 59820f0efb

View file

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