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

Add wait4 to the seccomp2 sandbox allowable syscall list

fixes bug 15088. patch from sanic.
parent 51e36026
No related branches found
No related tags found
No related merge requests found
o Minor bugfixes (Linux seccomp2 sandbox):
- Upon receiving sighup, do not crash during attempts to call
wait4. Fixes bug 15088; bugfix on 0.2.5.1-alpha. Patch from
"sanic".
......@@ -164,6 +164,7 @@ static int filter_nopar_gen[] = {
#endif
SCMP_SYS(stat),
SCMP_SYS(uname),
SCMP_SYS(wait4),
SCMP_SYS(write),
SCMP_SYS(writev),
SCMP_SYS(exit_group),
......
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