diff --git a/third_party/musl/dns_parse.c b/third_party/musl/dns_parse.c index 5dc3e1f1d..924d85a2d 100644 --- a/third_party/musl/dns_parse.c +++ b/third_party/musl/dns_parse.c @@ -40,7 +40,6 @@ int __dns_parse(const unsigned char *r, int rlen, p = r+12; qdcount = r[4]*256 + r[5]; ancount = r[6]*256 + r[7]; - if (qdcount+ancount > 64) return -1; while (qdcount--) { while (p-r < rlen && *p-1U < 127) p++; if (p>r+rlen-6)