mirror of
https://github.com/torvalds/linux.git
synced 2026-06-05 21:15:53 +02:00
net/sched: act_pedit: fix memory leak when IDR allocation fails
[ Upstream commit19ab69107d] tcf_idr_check_alloc() can return a negative value, on allocation failures (-ENOMEM) or IDR exhaustion (-ENOSPC): don't leak keys_ex in these cases. Fixes:0190c1d452("net: sched: atomically check-allocate action") Signed-off-by: Davide Caratti <dcaratti@redhat.com> Acked-by: Cong Wang <xiyou.wangcong@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3d6679c85a
commit
ae06e2f9c1
|
|
@ -201,7 +201,8 @@ static int tcf_pedit_init(struct net *net, struct nlattr *nla,
|
|||
goto out_release;
|
||||
}
|
||||
} else {
|
||||
return err;
|
||||
ret = err;
|
||||
goto out_free;
|
||||
}
|
||||
|
||||
p = to_pedit(*a);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user