diff options
Diffstat (limited to 'community/chromium/musl-fixes.patch')
-rw-r--r-- | community/chromium/musl-fixes.patch | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/community/chromium/musl-fixes.patch b/community/chromium/musl-fixes.patch index 6bddcf480a..0a069b7ec3 100644 --- a/community/chromium/musl-fixes.patch +++ b/community/chromium/musl-fixes.patch @@ -217,14 +217,14 @@ #include "base/posix/eintr_wrapper.h" ---- ./base/logging.cc -+++ ./base/logging.cc.orig -@@ -543,7 +543,7 @@ +--- ./base/logging.cc.orig ++++ ./base/logging.cc +@@ -494,7 +494,7 @@ } LogMessage::~LogMessage() { -#if !defined(OFFICIAL_BUILD) && !defined(OS_NACL) && !defined(__UCLIBC__) +#if !defined(OFFICIAL_BUILD) && !defined(OS_NACL) && defined(__GLIBC__) - if (severity_ == LOG_FATAL) { - // Include a stack trace on a fatal. + if (severity_ == LOG_FATAL && !base::debug::BeingDebugged()) { + // Include a stack trace on a fatal, unless a debugger is attached. base::debug::StackTrace trace; |