Skip to content
Snippets Groups Projects
Commit 033f0e8c authored by Aura Linden's avatar Aura Linden
Browse files

What passess in MSVC may not pass in Teamcity.

parent d9b09804
No related branches found
No related tags found
No related merge requests found
......@@ -339,7 +339,8 @@ void LLApp::setupErrorHandling()
{
llwarns << "adding breakpad exception handler" << llendl;
const std::wstring wpipe_name(wstringize(getPid());
const std::wstring wpipe_name(wstringize(getPid()));
const std::string pipe_name(stringize(wpipe_name));
::Sleep(3000); //HACK hopefully a static wait won't blow up in my face before google fixes their implementation.
......@@ -353,7 +354,7 @@ void LLApp::setupErrorHandling()
0,
google_breakpad::ExceptionHandler::HANDLER_ALL,
MiniDumpNormal, //Generate a 'normal' minidump.
stringize(wpipe_name).c_str(),
pipe_name.c_str(),
NULL); //No custom client info.
if (mExceptionHandler)
{
......
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