diff options
| -rw-r--r-- | libc/inet/resolv.c | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/libc/inet/resolv.c b/libc/inet/resolv.c index 056539f6e..9459199da 100644 --- a/libc/inet/resolv.c +++ b/libc/inet/resolv.c @@ -1517,10 +1517,8 @@ int attribute_hidden __dns_lookup(const char *name,  				memcpy(a, &ma, sizeof(ma));  				if (a->atype != T_SIG && (NULL == a->buf || (type != T_A && type != T_AAAA)))  					break; -				if (a->atype != type) { -					free(a->dotted); +				if (a->atype != type)  					continue; -				}  				a->add_count = h.ancount - j - 1;  				if ((a->rdlength + sizeof(struct in_addr*)) * a->add_count > a->buflen)  					break; | 
