summaryrefslogtreecommitdiff
path: root/indra/llcommon/llapp.cpp
diff options
context:
space:
mode:
authorMnikolenko ProductEngine <mnikolenko@productengine.com>2021-04-23 15:08:50 +0300
committerMnikolenko ProductEngine <mnikolenko@productengine.com>2021-04-23 15:08:50 +0300
commitae11dfe1a3a67d0a100d47e1e667d8fc36b9ef83 (patch)
treeecbc65b6c6d634712ce842810a2ac408991bf031 /indra/llcommon/llapp.cpp
parent3623e6eb8aa7d277c4aa5f2e14c5c7982128435e (diff)
build fix
Diffstat (limited to 'indra/llcommon/llapp.cpp')
-rw-r--r--indra/llcommon/llapp.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/llcommon/llapp.cpp b/indra/llcommon/llapp.cpp
index f66a6fb4dc..fdb36e3f2c 100644
--- a/indra/llcommon/llapp.cpp
+++ b/indra/llcommon/llapp.cpp
@@ -388,7 +388,7 @@ void LLApp::setupErrorHandling(bool second_instance)
#if defined(LL_BUGSPLAT)
// Don't install our own signal handlers -- BugSplat needs to hook them,
// or it's completely ineffectual.
- bool installHandler = false;
+ //bool installHandler = false;
#else // ! LL_BUGSPLAT
//
@@ -400,7 +400,7 @@ void LLApp::setupErrorHandling(bool second_instance)
setup_signals();
// Add google breakpad exception handler configured for Darwin/Linux.
- bool installHandler = true;
+ //bool installHandler = true;
#endif // ! LL_BUGSPLAT
#if LL_DARWIN
@@ -427,13 +427,13 @@ void LLApp::setupErrorHandling(bool second_instance)
{
// P_TRACED flag is set, so this process is being debugged; do not install
// the handler
- if(info.kp_proc.p_flag & P_TRACED) installHandler = false;
+ //if(info.kp_proc.p_flag & P_TRACED) installHandler = false;
}
else
{
// Failed to discover if the process is being debugged; default to
// installing the handler.
- installHandler = true;
+ //installHandler = true;
}
#endif // ! LL_RELEASE_FOR_DOWNLOAD