OnClientDumpRequest is static, work around that.
parent
e0ce9255f2
commit
98bcc6f044
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue