Commit 1d23255e authored by Alexandre Julliard's avatar Alexandre Julliard

mlang: Skip Unicode codepages in GetCharCodePages().

parent 9f1762e8
......@@ -3312,7 +3312,7 @@ static HRESULT WINAPI fnIMLangFontLink2_GetCharCodePages( IMLangFontLink2* iface
*ret_codepages = 0;
for (i = 0; i < ARRAY_SIZE(mlang_data); i++)
for (i = 0; i < ARRAY_SIZE(mlang_data) - 1 /* skip unicode codepages */; i++)
{
BOOL used_dc;
CHAR buf;
......
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