X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fnetwork%2F__dns.c;h=1464513df8b890c2c0e58324db53383a6ddb1343;hb=5271ff46b9e983bec5fd9ab79d5aaf096fa54157;hp=0d4f47e0ccdc373c466ad04fcdb969fd370e7185;hpb=88d84b7cc85841c575e54b635b125012c1d2e39d;p=musl diff --git a/src/network/__dns.c b/src/network/__dns.c index 0d4f47e0..1464513d 100644 --- a/src/network/__dns.c +++ b/src/network/__dns.c @@ -29,7 +29,7 @@ int __dns_doqueries(unsigned char *dest, const char *name, int *rr, int rrcnt) time_t t0 = time(0); int fd; FILE *f, _f; - unsigned char _buf[64]; + unsigned char _buf[256]; char line[64], *s, *z; union { struct sockaddr_in sin; @@ -89,12 +89,13 @@ int __dns_doqueries(unsigned char *dest, const char *name, int *rr, int rrcnt) sl = sizeof sa.sin; } - pthread_cleanup_push(cleanup, (void *)(intptr_t)fd); - pthread_setcancelstate(cs, 0); - /* Get local address and open/bind a socket */ sa.sin.sin_family = family; fd = socket(family, SOCK_DGRAM, 0); + + pthread_cleanup_push(cleanup, (void *)(intptr_t)fd); + pthread_setcancelstate(cs, 0); + if (bind(fd, (void *)&sa, sl) < 0) { errcode = EAI_SYSTEM; goto out;