diff options
author | callumprentice <none@none> | 2012-10-11 16:51:56 -0700 |
---|---|---|
committer | callumprentice <none@none> | 2012-10-11 16:51:56 -0700 |
commit | 57e8f8f5e4f771d6fe6a7739db474ade24af71e8 (patch) | |
tree | 4547ae6f6dd9bf977c906f5b2a795fd6bf489a9d /indra | |
parent | 075e55c4589b16dd5089075f14f5257654438264 (diff) |
point to new version of Google Breakpad and tweak function sig of GBP exception handler
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llcommon/llapp.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/indra/llcommon/llapp.cpp b/indra/llcommon/llapp.cpp index ed192a9975..a93957bb6b 100644 --- a/indra/llcommon/llapp.cpp +++ b/indra/llcommon/llapp.cpp @@ -349,7 +349,12 @@ void LLApp::setupErrorHandling() if(installHandler && (mExceptionHandler == 0)) { std::string dumpPath = "/tmp/"; - mExceptionHandler = new google_breakpad::ExceptionHandler(dumpPath, 0, &unix_post_minidump_callback, 0, true); + mExceptionHandler = new google_breakpad::ExceptionHandler(dumpPath, + 0, + &unix_post_minidump_callback, + 0, + true, + "port_name"); } #endif |