mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-23 22:52:23 +03:00
fix uninitialized scopeid in lookups from hosts file and ip literals
This commit is contained in:
parent
878887c50c
commit
cb1c88d42b
@ -24,7 +24,7 @@ int __lookup_ipliteral(struct address buf[static 1], const char *name, int famil
|
||||
if (family != AF_INET) {
|
||||
char tmp[64];
|
||||
char *p = strchr(name, '%'), *z;
|
||||
unsigned long long scopeid;
|
||||
unsigned long long scopeid = 0;
|
||||
if (p && p-name < 64) {
|
||||
memcpy(tmp, name, p-name);
|
||||
tmp[p-name] = 0;
|
||||
@ -44,8 +44,8 @@ int __lookup_ipliteral(struct address buf[static 1], const char *name, int famil
|
||||
if (!scopeid) return EAI_NONAME;
|
||||
}
|
||||
if (scopeid > UINT_MAX) return EAI_NONAME;
|
||||
buf[0].scopeid = scopeid;
|
||||
}
|
||||
buf[0].scopeid = scopeid;
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user