mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-16 18:26:42 +00:00
samples/bpf: Fix a resource leak
[ Upstream commit f3ef53174b23246fe9bc2bbc2542f3a3856fa1e2 ] The opened file should be closed in show_sockopts(), otherwise resource leak will occur that this problem was discovered by reading code Signed-off-by: Zhu Jun <zhujun2@cmss.chinamobile.com> Signed-off-by: Andrii Nakryiko <andrii@kernel.org> Link: https://lore.kernel.org/bpf/20241010014126.2573-1-zhujun2@cmss.chinamobile.com Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
77f168247b
commit
039daf6f02
@ -178,8 +178,10 @@ static int show_sockopts(int family)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (get_bind_to_device(sd, name, sizeof(name)) < 0)
|
if (get_bind_to_device(sd, name, sizeof(name)) < 0) {
|
||||||
|
close(sd);
|
||||||
return 1;
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
mark = get_somark(sd);
|
mark = get_somark(sd);
|
||||||
prio = get_priority(sd);
|
prio = get_priority(sd);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user