Minor
This commit is contained in:
parent
e708e97c35
commit
940d27a197
|
@ -822,14 +822,14 @@ FcNameParseRange (FcChar8 **string, FcChar32 *pfirst, FcChar32 *plast)
|
|||
char *t;
|
||||
long first, last;
|
||||
|
||||
while (isspace(*s) || *s == ',')
|
||||
while (isspace(*s))
|
||||
s++;
|
||||
t = s;
|
||||
errno = 0;
|
||||
first = last = strtol (s, &s, 16);
|
||||
if (errno)
|
||||
return FcFalse;
|
||||
while (isspace(*s) || *s == ',')
|
||||
while (isspace(*s))
|
||||
s++;
|
||||
if (*s == '-')
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue