We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c040b92 commit 7426fd5Copy full SHA for 7426fd5
zathura/seccomp-filters.c
@@ -61,6 +61,9 @@ int seccomp_enable_strict_filter(zathura_t* zathura) {
61
/* ALLOW_RULE(clock_getres); unused? */
62
/* ALLOW_RULE(clone); specified below, clone3 see comment below */
63
ALLOW_RULE(clock_gettime); /* used when vDSO function is unavailable */
64
+#ifdef __NR_clock_gettime64
65
+ ALLOW_RULE(clock_gettime64);
66
+#endif
67
ALLOW_RULE(close);
68
ALLOW_RULE(epoll_create1);
69
ALLOW_RULE(epoll_ctl);
0 commit comments