1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00

xz: Fix the Capsicum rights on user_abort_pipe.

This commit is contained in:
Lasse Collin 2015-04-01 14:45:25 +03:00
parent 9ccbae4100
commit cae412b2b7

View file

@ -198,8 +198,12 @@ io_sandbox_enter(int src_fd)
CAP_WRITE, CAP_SEEK)))
goto error;
if (cap_rights_limit(user_abort_pipe[0], cap_rights_init(&rights,
CAP_EVENT)))
goto error;
if (cap_rights_limit(user_abort_pipe[1], cap_rights_init(&rights,
CAP_EVENT, CAP_WRITE)))
CAP_WRITE)))
goto error;
if (cap_enter())