From cd98ab6491421db18dd8b4442d016e01ff202fc1 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 25 Sep 2002 12:52:13 +0000 Subject: [PATCH] Incorrect argument order to memset() --- crypto/engine/hw_4758_cca.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/engine/hw_4758_cca.c b/crypto/engine/hw_4758_cca.c index bfb80968e2..6d41b9ed2a 100644 --- a/crypto/engine/hw_4758_cca.c +++ b/crypto/engine/hw_4758_cca.c @@ -715,7 +715,7 @@ static int cca_rsa_verify(int type, const unsigned char *m, unsigned int m_len, if (type == NID_sha1 || type == NID_md5) { - memset(hashBuffer, keyLength+1, 0); + memset(hashBuffer, 0, keyLength+1); OPENSSL_free(hashBuffer); } @@ -838,7 +838,7 @@ static int cca_rsa_sign(int type, const unsigned char *m, unsigned int m_len, if (type == NID_sha1 || type == NID_md5) { - memset(hashBuffer, keyLength+1, 0); + memset(hashBuffer, 0, keyLength+1); OPENSSL_free(hashBuffer); } -- 2.34.1