diff --git a/indra/llcommon/llapp.cpp b/indra/llcommon/llapp.cpp
index f66a6fb4dce8a6515a5ca0ed8400d4713b51a94e..fdb36e3f2c41b26316654669745cb2f200c55061 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
 
diff --git a/indra/newview/llappviewermacosx.cpp b/indra/newview/llappviewermacosx.cpp
index 662164af2dc74a4f9e0e6259a65d226aeacd9e90..10d7dc69a4a9cafd6841da8e6089edd5bed9b95c 100644
--- a/indra/newview/llappviewermacosx.cpp
+++ b/indra/newview/llappviewermacosx.cpp
@@ -243,11 +243,11 @@ bool LLAppViewerMacOSX::init()
 	bool success = LLAppViewer::init();
     
 #if LL_SEND_CRASH_REPORTS
-    if (success)
+    /*if (success)
     {
         LLAppViewer* pApp = LLAppViewer::instance();
         pApp->initCrashReporting();
-    }
+    }*/
 #endif
     
     return success;