mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 05:57:52 +00:00
2159. [bug] Array bounds overrun in acache processing. [RT #16710]
This commit is contained in:
parent
ab41e5d1c7
commit
62ea33ba1a
1
CHANGES
1
CHANGES
@ -1,3 +1,4 @@
|
||||
2159. [bug] Array bounds overrun in acache processing. [RT #16710]
|
||||
|
||||
--- 9.5.0a2 released ---
|
||||
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user