diff options
author | Paul Moore <paul@paul-moore.com> | 2020-04-21 09:10:56 -0400 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2020-04-22 15:23:10 -0400 |
commit | 3054d06719079388a543de6adb812638675ad8f5 (patch) | |
tree | 4098fe58abae1e7d64162498c83a4423142189ad /kernel/audit.c | |
parent | a48b284b403a4a073d8beb72d2bb33e54df67fb6 (diff) | |
download | linux-stable-3054d06719079388a543de6adb812638675ad8f5.tar.gz linux-stable-3054d06719079388a543de6adb812638675ad8f5.tar.bz2 linux-stable-3054d06719079388a543de6adb812638675ad8f5.zip |
audit: fix a net reference leak in audit_list_rules_send()
If audit_list_rules_send() fails when trying to create a new thread
to send the rules it also fails to cleanup properly, leaking a
reference to a net structure. This patch fixes the error patch and
renames audit_send_list() to audit_send_list_thread() to better
match its cousin, audit_send_reply_thread().
Reported-by: teroincn@gmail.com
Reviewed-by: Richard Guy Briggs <rgb@redhat.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'kernel/audit.c')
-rw-r--r-- | kernel/audit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/audit.c b/kernel/audit.c index 66b81358b64f..622c30246d19 100644 --- a/kernel/audit.c +++ b/kernel/audit.c @@ -880,7 +880,7 @@ main_queue: return 0; } -int audit_send_list(void *_dest) +int audit_send_list_thread(void *_dest) { struct audit_netlink_list *dest = _dest; struct sk_buff *skb; |