mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-29 18:09:11 -04:00
2302. [bug] Fix memset() calls in lib/tests/t_api.c. [RT #17472]
This commit is contained in:
parent
034f775ae1
commit
efb3fa669f
2 changed files with 5 additions and 3 deletions
2
CHANGES
2
CHANGES
|
|
@ -1,3 +1,5 @@
|
|||
2302. [bug] Fix memset() calls in lib/tests/t_api.c. [RT #17472]
|
||||
|
||||
2301. [bug] Remove resource leak and fix error messages in
|
||||
bin/tests/system/lwresd/lwtest.c. [RT #17474]
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: t_api.c,v 1.60 2007/06/19 23:47:23 tbox Exp $ */
|
||||
/* $Id: t_api.c,v 1.61 2008/01/14 12:43:35 marka Exp $ */
|
||||
|
||||
/*! \file */
|
||||
|
||||
|
|
@ -130,7 +130,7 @@ main(int argc, char **argv) {
|
|||
/*
|
||||
* -a option is now default.
|
||||
*/
|
||||
memset(T_tvec, 0xffff, sizeof(T_tvec));
|
||||
memset(T_tvec, 0xff, sizeof(T_tvec));
|
||||
|
||||
/*
|
||||
* Parse args.
|
||||
|
|
@ -141,7 +141,7 @@ main(int argc, char **argv) {
|
|||
/*
|
||||
* Flag all tests to be run.
|
||||
*/
|
||||
memset(T_tvec, 0xffff, sizeof(T_tvec));
|
||||
memset(T_tvec, 0xff, sizeof(T_tvec));
|
||||
}
|
||||
else if (c == 'b') {
|
||||
T_dir = isc_commandline_argument;
|
||||
|
|
|
|||
Loading…
Reference in a new issue