Damjan Jovanovic <damjan....@gmail.com> writes:

> +static void strlwrA(char *str)
> +{
> +    while ((*str = tolower(*str))) str++;
> +}

That won't work on utf-8. You should do it on the Unicode string before
conversion.

-- 
Alexandre Julliard
julli...@winehq.org


Reply via email to