1834. [bug] Bad memset in rdata_test.c. [RT #13658]

This commit is contained in:
Mark Andrews
2005-03-16 02:45:28 +00:00
parent 1483862088
commit f609ce5b86
2 changed files with 4 additions and 2 deletions
+2
View File
@@ -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]
1832. [bug] named fails to return BADKEY on unknown TSIG algorithm.
+2 -2
View File
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: rdata_test.c,v 1.35.2.1 2004/03/09 06:09:34 marka Exp $ */
/* $Id: rdata_test.c,v 1.35.2.2 2005/03/16 02:45:28 marka Exp $ */
#include <config.h>
@@ -836,7 +836,7 @@ main(int argc, char *argv[]) {
}
}
memset(&dctx, '0', sizeof dctx);
memset(&dctx, 0, sizeof dctx);
dctx.allowed = DNS_COMPRESS_ALL;
RUNTIME_CHECK(isc_mem_create(0, 0, &mctx) == ISC_R_SUCCESS);