mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-08 10:31:50 -05:00
util: Add missing unlinkat to syscall sandbox
This commit is contained in:
parent
af0b578041
commit
fa455975e5
1 changed files with 1 additions and 0 deletions
|
@ -600,6 +600,7 @@ public:
|
|||
allowed_syscalls.insert(__NR_statfs); // get filesystem statistics
|
||||
allowed_syscalls.insert(__NR_statx); // get file status (extended)
|
||||
allowed_syscalls.insert(__NR_unlink); // delete a name and possibly the file it refers to
|
||||
allowed_syscalls.insert(__NR_unlinkat); // delete relative to a directory file descriptor
|
||||
}
|
||||
|
||||
void AllowFutex()
|
||||
|
|
Loading…
Add table
Reference in a new issue