OnClientDumpRequest is static, work around that.

Nicky 2014-06-09 03:59:36 +02:00
parent e0ce9255f2
commit 98bcc6f044
1 changed files with 3 additions and 2 deletions

View File

@ -377,8 +377,6 @@ void LLCrashLoggerWindows::OnClientDumpRequest(void* context,
const google_breakpad::ClientInfo* client_info,
const std::wstring* file_path)
{
mMinidumpWritten = true; // <FS:ND/> We crashed, need to send those crashlogs.
if (!file_path)
{
llwarns << "dump with no file path" << llendl;
@ -397,6 +395,9 @@ void LLCrashLoggerWindows::OnClientDumpRequest(void* context,
return;
}
self->mMinidumpWritten = true; // <FS:ND/> We crashed, need to send those crashlogs.
//DWORD pid = client_info->pid();
}