mirror of
https://github.com/torvalds/linux.git
synced 2024-12-26 12:52:30 +00:00
oradax: remove redundant null check before kfree
A null check before a kfree is redundant, so remove it. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
31a43fa794
commit
16e2a9d396
@ -689,8 +689,7 @@ static int dax_open(struct inode *inode, struct file *f)
|
||||
alloc_error:
|
||||
kfree(ctx->ccb_buf);
|
||||
done:
|
||||
if (ctx != NULL)
|
||||
kfree(ctx);
|
||||
kfree(ctx);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user