Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
a5bb4ad5
Commit
a5bb4ad5
authored
Mar 16, 2005
by
Mark Andrews
Browse files
1834. [bug] Bad memset in rdata_test.c. [RT #13658]
parent
5e5b467e
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
a5bb4ad5
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.
...
...
bin/tests/rdata_test.c
View file @
a5bb4ad5
...
...
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: rdata_test.c,v 1.4
1
200
4
/03/
05 04:58:39
marka Exp $ */
/* $Id: rdata_test.c,v 1.4
2
200
5
/03/
16 02:44:05
marka Exp $ */
#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
;
RUNTIME_CHECK
(
isc_mem_create
(
0
,
0
,
&
mctx
)
==
ISC_R_SUCCESS
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment