mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-25 05:55:20 +07:00
[patch 1/1] audit_send_reply(): fix error-path memory leak
Addresses http://bugzilla.kernel.org/show_bug.cgi?id=10663 Reporter: Daniel Marjamki <danielm77@spray.se> Cc: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
6ee650467d
commit
fcaf1eb868
@ -572,16 +572,17 @@ void audit_send_reply(int pid, int seq, int type, int done, int multi,
|
|||||||
|
|
||||||
skb = audit_make_reply(pid, seq, type, done, multi, payload, size);
|
skb = audit_make_reply(pid, seq, type, done, multi, payload, size);
|
||||||
if (!skb)
|
if (!skb)
|
||||||
return;
|
goto out;
|
||||||
|
|
||||||
reply->pid = pid;
|
reply->pid = pid;
|
||||||
reply->skb = skb;
|
reply->skb = skb;
|
||||||
|
|
||||||
tsk = kthread_run(audit_send_reply_thread, reply, "audit_send_reply");
|
tsk = kthread_run(audit_send_reply_thread, reply, "audit_send_reply");
|
||||||
if (IS_ERR(tsk)) {
|
if (!IS_ERR(tsk))
|
||||||
kfree(reply);
|
return;
|
||||||
kfree_skb(skb);
|
kfree_skb(skb);
|
||||||
}
|
out:
|
||||||
|
kfree(reply);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user