Commit b8d3de85 authored by Himanshu Jha's avatar Himanshu Jha Committed by Herbert Xu

crypto: n2 - remove null check before kfree

kfree on NULL pointer is a no-op and therefore checking it is redundant.
Signed-off-by: default avatarHimanshu Jha <himanshujha199640@gmail.com>
Acked-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 16d5cee5
...@@ -1962,10 +1962,8 @@ static struct n2_crypto *alloc_n2cp(void) ...@@ -1962,10 +1962,8 @@ static struct n2_crypto *alloc_n2cp(void)
static void free_n2cp(struct n2_crypto *np) static void free_n2cp(struct n2_crypto *np)
{ {
if (np->cwq_info.ino_table) { kfree(np->cwq_info.ino_table);
kfree(np->cwq_info.ino_table); np->cwq_info.ino_table = NULL;
np->cwq_info.ino_table = NULL;
}
kfree(np); kfree(np);
} }
...@@ -2079,10 +2077,8 @@ static struct n2_mau *alloc_ncp(void) ...@@ -2079,10 +2077,8 @@ static struct n2_mau *alloc_ncp(void)
static void free_ncp(struct n2_mau *mp) static void free_ncp(struct n2_mau *mp)
{ {
if (mp->mau_info.ino_table) { kfree(mp->mau_info.ino_table);
kfree(mp->mau_info.ino_table); mp->mau_info.ino_table = NULL;
mp->mau_info.ino_table = NULL;
}
kfree(mp); kfree(mp);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment