diff options
Diffstat (limited to 'net/core/devlink.c')
| -rw-r--r-- | net/core/devlink.c | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/net/core/devlink.c b/net/core/devlink.c index b0b87a292e7c..a0adfc31a3fe 100644 --- a/net/core/devlink.c +++ b/net/core/devlink.c @@ -1680,8 +1680,10 @@ start_again:  	hdr = genlmsg_put(skb, info->snd_portid, info->snd_seq,  			  &devlink_nl_family, NLM_F_MULTI, cmd); -	if (!hdr) +	if (!hdr) { +		nlmsg_free(skb);  		return -EMSGSIZE; +	}  	if (devlink_nl_put_handle(skb, devlink))  		goto nla_put_failure; @@ -2098,8 +2100,10 @@ start_again:  	hdr = genlmsg_put(skb, info->snd_portid, info->snd_seq,  			  &devlink_nl_family, NLM_F_MULTI, cmd); -	if (!hdr) +	if (!hdr) { +		nlmsg_free(skb);  		return -EMSGSIZE; +	}  	if (devlink_nl_put_handle(skb, devlink))  		goto nla_put_failure; |