diff options
author | Jia Tan <jiat0218@gmail.com> | 2024-02-23 20:27:15 +0800 |
---|---|---|
committer | Jia Tan <jiat0218@gmail.com> | 2024-02-23 20:27:15 +0800 |
commit | eea78216d27182ca917bf00e02feaab058a4d21e (patch) | |
tree | 2734f2f52e7786493ab222d5c31e3191aece6297 | |
parent | Build: Fix ARM64 CRC32 instruction feature test. (diff) | |
download | xz-eea78216d27182ca917bf00e02feaab058a4d21e.tar.xz |
xz: Fix Capsicum sandbox compile error.
user_abort_pipe[] was still being used instead of the parameters.
-rw-r--r-- | src/xz/sandbox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xz/sandbox.c b/src/xz/sandbox.c index 9e30a07a..3b3069c8 100644 --- a/src/xz/sandbox.c +++ b/src/xz/sandbox.c @@ -330,11 +330,11 @@ sandbox_enable_strict_if_allowed( CAP_WRITE))) goto error; - if (cap_rights_limit(user_abort_pipe[0], cap_rights_init(&rights, + if (cap_rights_limit(pipe_event_fd, cap_rights_init(&rights, CAP_EVENT))) goto error; - if (cap_rights_limit(user_abort_pipe[1], cap_rights_init(&rights, + if (cap_rights_limit(pipe_write_fd, cap_rights_init(&rights, CAP_WRITE))) goto error; |