Skip to content
Snippets Groups Projects
Commit 00c9f6e8 authored by Zhu Jun's avatar Zhu Jun Committed by Greg Kroah-Hartman
Browse files

samples/bpf: Fix a resource leak


[ Upstream commit f3ef5317 ]

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: default avatarZhu Jun <zhujun2@cmss.chinamobile.com>
Signed-off-by: default avatarAndrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20241010014126.2573-1-zhujun2@cmss.chinamobile.com


Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 86b66b80
No related branches found
No related tags found
No related merge requests found
......@@ -174,8 +174,10 @@ static int show_sockopts(int family)
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;
}
mark = get_somark(sd);
prio = get_priority(sd);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment