mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-06 23:02:10 +03:00
fix parsing of quoted time zone names
Fix parsing of the < > quoted time zone names. Compare the correct character instead of repeatedly comparing the first character.
This commit is contained in:
parent
7352b59d68
commit
8ca27ac4bf
@ -84,7 +84,7 @@ static void getname(char *d, const char **p)
|
||||
int i;
|
||||
if (**p == '<') {
|
||||
++*p;
|
||||
for (i=0; **p!='>' && i<TZNAME_MAX; i++)
|
||||
for (i=0; (*p)[i]!='>' && i<TZNAME_MAX; i++)
|
||||
d[i] = (*p)[i];
|
||||
++*p;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user