When res_send() fails, we should reserve an error code.
This commit is contained in:
parent
c147998f53
commit
d05ad2ab4d
@ -2358,9 +2358,9 @@ res_queryN(name, target, res)
|
||||
}
|
||||
#endif
|
||||
|
||||
if (n < 0 || n > anslen)
|
||||
if (n > anslen)
|
||||
hp->rcode = FORMERR; /* XXX not very informative */
|
||||
if (hp->rcode != NOERROR || ntohs(hp->ancount) == 0) {
|
||||
if (n < 0 || hp->rcode != NOERROR || ntohs(hp->ancount) == 0) {
|
||||
rcode = hp->rcode; /* record most recent error */
|
||||
#ifdef DEBUG
|
||||
if (res->options & RES_DEBUG)
|
||||
|
Loading…
Reference in New Issue
Block a user