mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-27 13:36:00 +01:00
allow pipe2 syscall
This commit is contained in:
parent
d5698845f5
commit
b02c73fcb1
1 changed files with 1 additions and 0 deletions
|
@ -187,6 +187,7 @@ seccomp_enable_strict_filter(void)
|
|||
//ALLOW_RULE (open); /* (zathura needs to open for writing) TODO: avoid needing this somehow */
|
||||
//ALLOW_RULE (openat);
|
||||
ALLOW_RULE(pipe);
|
||||
ALLOW_RULE(pipe2);
|
||||
ALLOW_RULE(poll);
|
||||
ALLOW_RULE(pwrite64); /* TODO: build detailed filter */
|
||||
ALLOW_RULE(pread64);
|
||||
|
|
Loading…
Reference in a new issue