mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
remove redundant memset
This commit is contained in:
parent
113aa279d1
commit
69f56d4ef2
1 changed files with 1 additions and 2 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: hmacmd5.c,v 1.11 2006/01/27 23:57:46 marka Exp $ */
|
||||
/* $Id: hmacmd5.c,v 1.12 2006/02/26 22:28:22 marka Exp $ */
|
||||
|
||||
/*! \file
|
||||
* This code implements the HMAC-MD5 keyed hash algorithm
|
||||
|
|
@ -65,7 +65,6 @@ void
|
|||
isc_hmacmd5_invalidate(isc_hmacmd5_t *ctx) {
|
||||
isc_md5_invalidate(&ctx->md5ctx);
|
||||
memset(ctx->key, 0, sizeof(ctx->key));
|
||||
memset(ctx, 0, sizeof(ctx));
|
||||
}
|
||||
|
||||
/*!
|
||||
|
|
|
|||
Loading…
Reference in a new issue