mirror of
https://github.com/fluencelabs/musl
synced 2025-05-28 07:01:35 +00:00
fix uninitialized variables in dns lookup code
This commit is contained in:
parent
74f75541ff
commit
d4fbebe18d
@ -31,8 +31,8 @@ int __dns_doqueries(unsigned char *dest, const char *name, int *rr, int rrcnt)
|
||||
struct sockaddr_in6 sin6;
|
||||
} sa = {0}, ns[3] = {{0}};
|
||||
socklen_t sl;
|
||||
int nns;
|
||||
int family;
|
||||
int nns = 0;
|
||||
int family = AF_UNSPEC;
|
||||
unsigned char q[280] = "", *r = dest;
|
||||
int ql;
|
||||
int rlen;
|
||||
|
Loading…
x
Reference in New Issue
Block a user