mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2025-01-13 20:15:59 +01:00
clean process shutdown by sandbox
This commit is contained in:
parent
87989da708
commit
b951d024a5
1 changed files with 4 additions and 1 deletions
|
@ -132,7 +132,10 @@ seccomp_enable_strict_filter(void)
|
|||
}
|
||||
|
||||
/* initialize the filter */
|
||||
scmp_filter_ctx ctx = seccomp_init(SCMP_ACT_KILL);
|
||||
/* ENOSYS tells the calling process that the syscall is not implemented,
|
||||
* allowing for a potential fallback function to execute
|
||||
* scmp_filter_ctx ctx = seccomp_init(SCMP_ACT_ERRNO(ENOSYS));*/
|
||||
scmp_filter_ctx ctx = seccomp_init(SCMP_ACT_KILL_PROCESS);
|
||||
if (ctx == NULL){
|
||||
girara_error("seccomp_init failed");
|
||||
return -1;
|
||||
|
|
Loading…
Reference in a new issue