diff options
author | Jiri Pirko <jpirko@redhat.com> | 2012-06-19 07:54:12 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-06-20 00:00:23 +0200 |
commit | 75db986a6b93dd93e543387720b88f350ce38d30 (patch) | |
tree | 11ed6031ea329e7ea98af0d37101fdbf2465e6af /drivers | |
parent | team: allow async option changes (diff) | |
download | linux-75db986a6b93dd93e543387720b88f350ce38d30.tar.xz linux-75db986a6b93dd93e543387720b88f350ce38d30.zip |
team: fix error path in team_nl_fill_options_get()
genlmsg_cancel() needs to be called in case nest fails
Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/team/team.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/team/team.c b/drivers/net/team/team.c index 7988ba099b94..82ded1820caf 100644 --- a/drivers/net/team/team.c +++ b/drivers/net/team/team.c @@ -1583,7 +1583,7 @@ static int team_nl_fill_options_get(struct sk_buff *skb, goto nla_put_failure; option_list = nla_nest_start(skb, TEAM_ATTR_LIST_OPTION); if (!option_list) - return -EMSGSIZE; + goto nla_put_failure; list_for_each_entry(opt_inst, &team->option_inst_list, list) { struct nlattr *option_item; |