diff --git a/ChangeLog b/ChangeLog index 2c9dc50f6..5a5136b2b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +20140910 + - (djm) [sandbox-seccomp-filter.c] Allow mremap and exit for DietLibc; + patch from Felix von Leitner; ok dtucker + 20140908 - (dtucker) [INSTALL] Update info about egd. ok djm@ diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c index c2be00696..b6f6258f2 100644 --- a/sandbox-seccomp-filter.c +++ b/sandbox-seccomp-filter.c @@ -117,6 +117,10 @@ static const struct sock_filter preauth_insns[] = { #endif #ifdef __NR_mmap SC_ALLOW(mmap), +#endif +#ifdef __dietlibc__ + SC_ALLOW(mremap), + SC_ALLOW(exit), #endif SC_ALLOW(munmap), SC_ALLOW(exit_group),