diff options
author | David Goulet <dgoulet@torproject.org> | 2022-03-28 09:45:16 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2022-03-28 09:45:16 -0400 |
commit | 62fb18497944382219adac9052f9668fdcb1894d (patch) | |
tree | d5e91d1547dbb48e3449b92fd6c2b379a60f0685 /src | |
parent | 84fc75420495c2ab425c8ac1e627e3678870494b (diff) | |
parent | d14af825ce9b2dbacdc11aa73340458bfef5b190 (diff) | |
download | tor-62fb18497944382219adac9052f9668fdcb1894d.tar.gz tor-62fb18497944382219adac9052f9668fdcb1894d.zip |
Merge branch 'maint-0.4.6'
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/sandbox/sandbox.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/sandbox/sandbox.c b/src/lib/sandbox/sandbox.c index a15f99ad76..e87edd8e21 100644 --- a/src/lib/sandbox/sandbox.c +++ b/src/lib/sandbox/sandbox.c @@ -160,6 +160,9 @@ static int filter_nopar_gen[] = { SCMP_SYS(close), SCMP_SYS(clone), SCMP_SYS(dup), +#ifdef __NR_clone3 + SCMP_SYS(clone3), +#endif SCMP_SYS(epoll_create), SCMP_SYS(epoll_wait), #ifdef __NR_epoll_pwait |