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

2159. [bug] Array bounds overrun in acache processing. [RT #16710]

This commit is contained in:
Mark Andrews 2007-03-12 03:37:21 +00:00
parent ab41e5d1c7
commit 62ea33ba1a
2 changed files with 3 additions and 2 deletions

View File

@ -1,3 +1,4 @@
2159. [bug] Array bounds overrun in acache processing. [RT #16710]
--- 9.5.0a2 released ---

View File

@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: rbtdb.c,v 1.242 2007/03/06 00:38:57 marka Exp $ */
/* $Id: rbtdb.c,v 1.243 2007/03/12 03:37:21 marka Exp $ */
/*! \file */
@ -6561,7 +6561,7 @@ rdataset_setadditional(dns_rdataset_t *rdataset, dns_rdatasetadditional_t type,
if (newcbarg == NULL)
return (ISC_R_NOMEMORY);
newcbarg->type = type;
newcbarg->count = init_count;
newcbarg->count = count;
newcbarg->header = header;
newcbarg->db = NULL;
dns_db_attach((dns_db_t *)rbtdb, &newcbarg->db);