Skip to content

Commit

Permalink
kmod: Release sub_info on cred allocation failure.
Browse files Browse the repository at this point in the history
call_usermodehelper_setup() forgot to kfree(sub_info)
when prepare_usermodehelper_creds() failed.

Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Tetsuo Handa authored and Linus Torvalds committed May 26, 2009
1 parent d4a76f8 commit ab2b7eb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion kernel/kmod.c
Original file line number Diff line number Diff line change
@@ -370,8 +370,10 @@ struct subprocess_info *call_usermodehelper_setup(char *path, char **argv,
sub_info->argv = argv;
sub_info->envp = envp;
sub_info->cred = prepare_usermodehelper_creds();
if (!sub_info->cred)
if (!sub_info->cred) {
kfree(sub_info);
return NULL;
}

out:
return sub_info;

0 comments on commit ab2b7eb

Please sign in to comment.