Skip to content
Snippets Groups Projects
Commit a056ffab authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

sandbox: permit listen(2)

Fix for 12115; bugfix on 0.2.5.1-alpha
parent 14842de9
No related branches found
No related tags found
No related merge requests found
o Minor bugfixes (linux seccomp sandbox):
- Avoid crashing when re-opening listener ports with the seccomp
sandbox active. Fixes bug 12115; bugfix on 0.2.5.1-alpha.
......@@ -186,6 +186,7 @@ static int filter_nopar_gen[] = {
// socket syscalls
SCMP_SYS(bind),
SCMP_SYS(listen),
SCMP_SYS(connect),
SCMP_SYS(getsockname),
SCMP_SYS(recvmsg),
......
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