mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
dcb: Add missing error check in dcb_ieee_set()
Missing error checking before nla_parse_nested(). Reported-by: Mark Rustad <mark.d.rustad@intel.com> Signed-off-by: John Fastabend <john.r.fastabend@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ab6baf980b
commit
4003b65871
@ -1368,6 +1368,9 @@ static int dcbnl_ieee_set(struct net_device *netdev, struct nlattr **tb,
|
||||
if (!ops)
|
||||
return err;
|
||||
|
||||
if (!tb[DCB_ATTR_IEEE])
|
||||
return -EINVAL;
|
||||
|
||||
err = nla_parse_nested(ieee, DCB_ATTR_IEEE_MAX,
|
||||
tb[DCB_ATTR_IEEE], dcbnl_ieee_policy);
|
||||
if (err)
|
||||
|
Loading…
Reference in New Issue
Block a user