Commit 021187f9 authored by Nick Mathewson's avatar Nick Mathewson 🤹
Browse files

Merge branch 'bug28183_029' into maint-0.3.5

parents 6f2151be 0e5378fe
Loading
Loading
Loading
Loading

changes/bug28183

0 → 100644
+4 −0
Original line number Diff line number Diff line
  o Minor bugfixes (Linux seccomp2 sandbox):
    - Permit the "shutdown()" system call, which is apparently
      used by OpenSSL under some circumstances. Fixes bug 28183;
      bugfix on 0.2.5.1-alpha.
+2 −0
Original line number Diff line number Diff line
@@ -222,6 +222,7 @@ static int filter_nopar_gen[] = {
#ifdef __NR_setrlimit
    SCMP_SYS(setrlimit),
#endif
    SCMP_SYS(shutdown),
#ifdef __NR_sigaltstack
    SCMP_SYS(sigaltstack),
#endif
@@ -1803,4 +1804,5 @@ void
sandbox_disable_getaddrinfo_cache(void)
{
}

#endif /* !defined(USE_LIBSECCOMP) */