Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions zathura/seccomp-filters.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ int seccomp_enable_strict_filter(zathura_t* zathura) {
ALLOW_RULE(madvise);
ALLOW_RULE(memfd_create);
ALLOW_RULE(mmap);
#ifdef __NR_mmap2
ALLOW_RULE(mmap2); /* Only required on 32-bit ARM systems */
#endif
ALLOW_RULE(mprotect);
ALLOW_RULE(mremap); /* mupdf requirement */
ALLOW_RULE(munmap);
Expand Down