Skip to content

Commit c040b92

Browse files
committed
Also allow futex_time64 for i386
1 parent 448855a commit c040b92

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

zathura/seccomp-filters.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ int seccomp_enable_strict_filter(zathura_t* zathura) {
7878
ALLOW_RULE(fstatfs); /* statfs (below) */
7979
ALLOW_RULE(ftruncate);
8080
ALLOW_RULE(futex);
81+
#ifdef __NR_futex_time64
82+
ALLOW_RULE(futex_time64);
83+
#endif
8184
/* ALLOW_RULE(getdents); 32 bit only */
8285
ALLOW_RULE(getdents64);
8386
ALLOW_RULE(getegid);

0 commit comments

Comments
 (0)