Commit ebbaeab1 authored by Thomas Graf's avatar Thomas Graf Committed by David S. Miller

[PKT_SCHED]: act_api: Fix module leak while flushing actions

Module reference needs to be given back if message header
construction fails.
Signed-off-by: default avatarThomas Graf <tgraf@suug.ch>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 26e0fd1c
...@@ -602,8 +602,8 @@ static int tca_action_flush(struct rtattr *rta, struct nlmsghdr *n, u32 pid) ...@@ -602,8 +602,8 @@ static int tca_action_flush(struct rtattr *rta, struct nlmsghdr *n, u32 pid)
return err; return err;
rtattr_failure: rtattr_failure:
module_put(a->ops->owner);
nlmsg_failure: nlmsg_failure:
module_put(a->ops->owner);
err_out: err_out:
kfree_skb(skb); kfree_skb(skb);
kfree(a); kfree(a);
......
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