Commit f6f2a1a3 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

dwrite: Fix fallback config ranges text parsing.

parent 16bcc3bc
......@@ -2816,7 +2816,8 @@ static void system_fallback_parse_ranges(const char *str, DWRITE_UNICODE_RANGE *
str = end + 1;
ranges[count].last = strtoul(str, &end, 16);
}
if (*end == ',') str = end + 1;
str = end;
if (*str == ',') str++;
count++;
}
......
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