firestream: Fix memleak in fs_open
[ Upstream commit 15ac5cdafb9202424206dc5bd376437a358963f9 ] When make_rate() fails, vcc should be freed just like other error paths in fs_open(). Signed-off-by: Dinghao Liu <dinghao.liu@zju.edu.cn> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
fb7540c25b
commit
4ee1769b49
@@ -1013,6 +1013,7 @@ static int fs_open(struct atm_vcc *atm_vcc)
|
|||||||
error = make_rate (pcr, r, &tmc0, NULL);
|
error = make_rate (pcr, r, &tmc0, NULL);
|
||||||
if (error) {
|
if (error) {
|
||||||
kfree(tc);
|
kfree(tc);
|
||||||
|
kfree(vcc);
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user