mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-23 07:07:00 -04:00
pullup:
1207. [bug] libbind: getaddrinfo() could call freeaddrinfo() with
an invalid pointer.
This commit is contained in:
parent
6bc9a03601
commit
258eca377d
2 changed files with 4 additions and 1 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,6 +1,9 @@
|
|||
|
||||
--- 9.2.1rc1 released ---
|
||||
|
||||
1207. [bug] libbind: getaddrinfo() could call freeaddrinfo() with
|
||||
an invalid pointer.
|
||||
|
||||
1205. [bug] OPT, TSIG and TKEY cannot be used to set the "class"
|
||||
of the message. [RT #2449]
|
||||
|
||||
|
|
|
|||
|
|
@ -320,7 +320,7 @@ getaddrinfo(hostname, servname, hints, res)
|
|||
struct addrinfo sentinel;
|
||||
struct addrinfo *cur;
|
||||
int error = 0;
|
||||
struct addrinfo ai, ai0, *afai;
|
||||
struct addrinfo ai, ai0, *afai = NULL;
|
||||
struct addrinfo *pai;
|
||||
const struct explore *ex;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue