mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 22:45:39 +00:00
1834. [bug] Bad memset in rdata_test.c. [RT #13658]
This commit is contained in:
2
CHANGES
2
CHANGES
@@ -1,3 +1,5 @@
|
|||||||
|
1834. [bug] Bad memset in rdata_test.c. [RT #13658]
|
||||||
|
|
||||||
1833. [bug] Race condition in isc_mutex_lock_profile(). [RT #13660]
|
1833. [bug] Race condition in isc_mutex_lock_profile(). [RT #13660]
|
||||||
|
|
||||||
1832. [bug] named fails to return BADKEY on unknown TSIG algorithm.
|
1832. [bug] named fails to return BADKEY on unknown TSIG algorithm.
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
* PERFORMANCE OF THIS SOFTWARE.
|
* PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: rdata_test.c,v 1.41 2004/03/05 04:58:39 marka Exp $ */
|
/* $Id: rdata_test.c,v 1.42 2005/03/16 02:44:05 marka Exp $ */
|
||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
@@ -920,7 +920,7 @@ main(int argc, char *argv[]) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
memset(&dctx, '0', sizeof(dctx));
|
memset(&dctx, 0, sizeof(dctx));
|
||||||
dctx.allowed = DNS_COMPRESS_ALL;
|
dctx.allowed = DNS_COMPRESS_ALL;
|
||||||
|
|
||||||
RUNTIME_CHECK(isc_mem_create(0, 0, &mctx) == ISC_R_SUCCESS);
|
RUNTIME_CHECK(isc_mem_create(0, 0, &mctx) == ISC_R_SUCCESS);
|
||||||
|
Reference in New Issue
Block a user