Skip to content
Snippets Groups Projects
Commit 43f6b0cf authored by nixiaoming's avatar nixiaoming Committed by Paul Mackerras
Browse files

KVM: PPC: Book3S HV: Fix memory leak in kvm_vm_ioctl_get_htab_fd


We do ctx = kzalloc(sizeof(*ctx), GFP_KERNEL) and then later on call
anon_inode_getfd(), but if that fails we don't free ctx, so that
memory gets leaked.  To fix it, this adds kfree(ctx) in the failure
path.

Signed-off-by: default avatarnixiaoming <nixiaoming@huawei.com>
Reviewed-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
Signed-off-by: default avatarPaul Mackerras <paulus@ozlabs.org>
parent 4dafecde
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment