diff options
Diffstat (limited to 'src/Main/FatalErrorHandler.cpp')
-rw-r--r-- | src/Main/FatalErrorHandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Main/FatalErrorHandler.cpp b/src/Main/FatalErrorHandler.cpp index 37a10e73..28587630 100644 --- a/src/Main/FatalErrorHandler.cpp +++ b/src/Main/FatalErrorHandler.cpp @@ -63,19 +63,19 @@ namespace VeraCrypt #endif wstringstream vars; vars << L"cpus=" << wxThread::GetCPUCount(); vars << L"&cksum=" << hex << FatalErrorHandler::GetAppChecksum() << dec; vars << L"&err=" << signalInfo->si_signo; vars << L"&addr=" << hex << faultingInstructionAddress << dec; vars << FatalErrorHandler::GetCallStack (16); - wxString url = Gui->GetHomepageLinkURL (L"err-report", true, vars.str()); + wxString url = Gui->GetHomepageLinkURL (L"err-report", vars.str()); url.Replace (L"=0x", L"="); url.Replace (L"=0X0x", L"=0x"); url.Replace (L"=0X", L"=0x"); wxString msg = L"A critical error has occurred and VeraCrypt must be terminated. If this is caused by a bug in VeraCrypt, we would like to fix it. To help us, you can send us an automatically generated error report containing the following items:\n\n- Program version\n- Operating system version\n- Hardware architecture\n- Checksum of VeraCrypt executable\n- Error category\n- Error address\n"; #if wxUSE_STACKWALKER == 1 msg += L"- VeraCrypt call stack\n"; #endif msg += L"\nIf you select 'Yes', the following URL (which contains the entire error report) will be opened in your default Internet browser.\n\n"; @@ -206,19 +206,19 @@ namespace VeraCrypt vars << L"cpus=" << wxThread::GetCPUCount(); vars << wxString::Format (L"&cksum=%x", GetAppChecksum()); vars << L"&exception=" << exName; vars << L"&exlocation=" << exPos; vars << FatalErrorHandler::GetCallStack (16); vars.Replace (L"::", L"."); vars.Replace (L":", L"."); - wxString url = Gui->GetHomepageLinkURL (L"err-report", true, vars); + wxString url = Gui->GetHomepageLinkURL (L"err-report", vars); url.Replace (L"=0x", L"="); url.Replace (L"=0X0x", L"=0x"); url.Replace (L"=0X", L"=0x"); wxString msg = L"An unhandled exception has occurred and VeraCrypt must be terminated. If this is caused by a bug in VeraCrypt, we would like to fix it. To help us, you can send us an automatically generated error report containing the following items:\n\n- Program version\n- Operating system version\n- Hardware architecture\n- Checksum of VeraCrypt executable\n- Error description\n- Error location\n"; #if wxUSE_STACKWALKER == 1 msg += L"- VeraCrypt call stack\n"; #endif msg += L"\nIf you select 'Yes', the following URL (which contains the entire error report) will be opened in your default Internet browser.\n\n"; |