mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
f5f6d13e4c
__libc_message() tries to open /dev/tty with O_RDWR, but the sandbox catches that and calls it a crash. Instead, I'm making the sandbox setenv LIBC_FATAL_STDERR_, so that glibc uses stderr instead. Fix for 14759, bugfix on 0.2.5.1-alpha
7 lines
283 B
Plaintext
7 lines
283 B
Plaintext
o Minor bugfixes (sandbox):
|
|
- Allow Glibc fatal errors to be sent to stderr before Tor exits.
|
|
Previously, glibc would try to write them to /dev/tty, and the sandbox
|
|
would trap the call and make Tor exit prematurely. Fixes bug 14759;
|
|
bugfix on 0.2.5.1-alpha.
|
|
|