Commit 43054412 authored by Adrian Bunk's avatar Adrian Bunk Committed by Linus Torvalds

lguest_user.c: fix memory leak

This patch fixes a memory leak spotted by the Coverity checker.
Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 62ec5652
...@@ -184,7 +184,7 @@ static int initialize(struct file *file, const unsigned long __user *input) ...@@ -184,7 +184,7 @@ static int initialize(struct file *file, const unsigned long __user *input)
free_regs: free_regs:
free_page(lg->regs_page); free_page(lg->regs_page);
release_guest: release_guest:
memset(lg, 0, sizeof(*lg)); kfree(lg);
unlock: unlock:
mutex_unlock(&lguest_lock); mutex_unlock(&lguest_lock);
return err; return err;
......
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