From: Nikolay Aleksandrov Date: Wed, 30 Aug 2017 09:49:02 +0000 (+0300) Subject: sch_fq_codel: avoid double free on init failure X-Git-Tag: v4.14-rc1~190^2~8^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=30c31d746d0eb458ae327f522bc8e4c44cbea0f0;p=platform%2Fkernel%2Flinux-rpi.git sch_fq_codel: avoid double free on init failure It is very unlikely to happen but the backlogs memory allocation could fail and will free q->flows, but then ->destroy() will free q->flows too. For correctness remove the first free and let ->destroy clean up. Fixes: 87b60cfacf9f ("net_sched: fix error recovery at qdisc creation") Signed-off-by: Nikolay Aleksandrov Signed-off-by: David S. Miller --- diff --git a/net/sched/sch_fq_codel.c b/net/sched/sch_fq_codel.c index 337f2d6..2c0c05f 100644 --- a/net/sched/sch_fq_codel.c +++ b/net/sched/sch_fq_codel.c @@ -491,10 +491,8 @@ static int fq_codel_init(struct Qdisc *sch, struct nlattr *opt) if (!q->flows) return -ENOMEM; q->backlogs = kvzalloc(q->flows_cnt * sizeof(u32), GFP_KERNEL); - if (!q->backlogs) { - kvfree(q->flows); + if (!q->backlogs) return -ENOMEM; - } for (i = 0; i < q->flows_cnt; i++) { struct fq_codel_flow *flow = q->flows + i;