Commit 324082a8 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

libwine: Fix NORM_IGNORESYMBOLS flag handling in compare_weights.

parent 5e63f7f9
......@@ -216,7 +216,7 @@ static inline int compare_weights(int flags, const WCHAR *str1, int len1,
inc_str_pos(&str1, &len1, &dpos1, &dlen1);
skip = 1;
}
if (!dlen2 && get_char_typeW(dstr2[dpos2]) & (C1_PUNCT | C1_SPACE))
if (get_char_typeW(dstr2[dpos2]) & (C1_PUNCT | C1_SPACE))
{
inc_str_pos(&str2, &len2, &dpos2, &dlen2);
skip = 1;
......
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