summaryrefslogtreecommitdiff
path: root/crypto/hmac.c
diff options
context:
space:
mode:
authorJesper Juhl <juhl-lkml@dif.dk>2005-07-06 13:51:00 -0700
committerDavid S. Miller <davem@davemloft.net>2005-07-06 13:51:00 -0700
commite1fe8b667a5c9657b1899837eb481e63264a8a37 (patch)
treeb63d639f9020baf566aef6959404e6e7d6d50616 /crypto/hmac.c
parentc7d7c4747c5d49b0208768dcb4f09eb0f3ef7960 (diff)
downloadlinux-crypto-e1fe8b667a5c9657b1899837eb481e63264a8a37.tar.gz
linux-crypto-e1fe8b667a5c9657b1899837eb481e63264a8a37.zip
[CRYPTO] Don't check for NULL before kfree()
Checking a pointer for NULL before calling kfree() on it is redundant. This patch removes such checks from crypto/ Signed-off-by: Jesper Juhl <juhl-lkml@dif.dk> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--crypto/hmac.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/hmac.c b/crypto/hmac.c
index 847df926..da0456b3 100644
--- a/crypto/hmac.c
+++ b/crypto/hmac.c
@@ -49,8 +49,7 @@ int crypto_alloc_hmac_block(struct crypto_tfm *tfm)
void crypto_free_hmac_block(struct crypto_tfm *tfm)
{
- if (tfm->crt_digest.dit_hmac_block)
- kfree(tfm->crt_digest.dit_hmac_block);
+ kfree(tfm->crt_digest.dit_hmac_block);
}
void crypto_hmac_init(struct crypto_tfm *tfm, u8 *key, unsigned int *keylen)