Skip to content
Snippets Groups Projects
Commit caa0eb99 authored by Graham Madarasz (Graham Linden)'s avatar Graham Madarasz (Graham Linden)
Browse files

Revert previous change because breakpad's ExceptionHandler class has different...

Revert previous change because breakpad's ExceptionHandler class has different API on diff platforms
parent 84d6cdf6
No related branches found
No related tags found
No related merge requests found
...@@ -299,7 +299,7 @@ void LLApp::setupErrorHandling() ...@@ -299,7 +299,7 @@ void LLApp::setupErrorHandling()
{ {
llwarns << "adding breakpad exception handler" << llendl; llwarns << "adding breakpad exception handler" << llendl;
mExceptionHandler = new google_breakpad::ExceptionHandler( mExceptionHandler = new google_breakpad::ExceptionHandler(
L"C:\\Temp\\", 0, windows_post_minidump_callback, 0, true, google_breakpad::ExceptionHandler::HANDLER_ALL); L"C:\\Temp\\", 0, windows_post_minidump_callback, 0, google_breakpad::ExceptionHandler::HANDLER_ALL);
} }
#endif #endif
#else #else
...@@ -350,7 +350,7 @@ void LLApp::setupErrorHandling() ...@@ -350,7 +350,7 @@ void LLApp::setupErrorHandling()
if(installHandler && (mExceptionHandler == 0)) if(installHandler && (mExceptionHandler == 0))
{ {
std::string dumpPath = "/tmp/"; std::string dumpPath = "/tmp/";
mExceptionHandler = new google_breakpad::ExceptionHandler(dumpPath, 0, &unix_post_minidump_callback, 0, true, google_breakpad::ExceptionHandler::HANDLER_ALL); mExceptionHandler = new google_breakpad::ExceptionHandler(dumpPath, 0, &unix_post_minidump_callback, 0, true, 0);
} }
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment