Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3221c646 authored by Jiri Pirko's avatar Jiri Pirko Committed by David S. Miller
Browse files

team: fix error path in team_nl_fill_port_list_get()



genlmsg_cancel() needs to be called in case nest fails

Signed-off-by: default avatarJiri Pirko <jpirko@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 75db986a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1849,7 +1849,7 @@ static int team_nl_fill_port_list_get(struct sk_buff *skb,
		goto nla_put_failure;
	port_list = nla_nest_start(skb, TEAM_ATTR_LIST_PORT);
	if (!port_list)
		return -EMSGSIZE;
		goto nla_put_failure;

	list_for_each_entry(port, &team->port_list, list) {
		struct nlattr *port_item;