mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 05:03:43 +01:00
Merge branch 'maint-0.4.3' into maint-0.4.4
This commit is contained in:
commit
0d02c053f8
3
changes/ticket33346
Normal file
3
changes/ticket33346
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
o Minor features (linux seccomp2 sandbox):
|
||||||
|
- Permit the unlinkat() syscall, which some Libc implementations
|
||||||
|
use to implement unlink(). Closes ticket 33346.
|
@ -279,6 +279,9 @@ static int filter_nopar_gen[] = {
|
|||||||
SCMP_SYS(recvfrom),
|
SCMP_SYS(recvfrom),
|
||||||
SCMP_SYS(sendto),
|
SCMP_SYS(sendto),
|
||||||
SCMP_SYS(unlink),
|
SCMP_SYS(unlink),
|
||||||
|
#ifdef __NR_unlinkat
|
||||||
|
SCMP_SYS(unlinkat),
|
||||||
|
#endif
|
||||||
SCMP_SYS(poll)
|
SCMP_SYS(poll)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user