2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 05:28:00 +00:00

bug in dns_nsec_typepresent() - 19112

This commit is contained in:
Francis Dupont 2009-01-06 09:06:02 +00:00
parent 41329de6d2
commit b393e55a76
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
2523. [bug] Random type rdata freed by dns_nsec_typepresent().
[RT #19112]
2522. [placeholder]
2521. [bug] Improve epoll cross compilation support. [RT #19047]

View File

@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: nsec.c,v 1.11 2008/09/25 04:02:38 tbox Exp $ */
/* $Id: nsec.c,v 1.12 2009/01/06 09:06:02 fdupont Exp $ */
/*! \file */
@ -220,7 +220,7 @@ dns_nsec_typepresent(dns_rdata_t *nsec, dns_rdatatype_t type) {
type % 256));
break;
}
dns_rdata_freestruct(&nsec);
dns_rdata_freestruct(&nsecstruct);
return (present);
}