diff options
author | George Hazan <ghazan@miranda.im> | 2018-07-05 16:59:41 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-07-05 16:59:41 +0300 |
commit | 0b76f598f879aba590c11496d4266ae02d087bde (patch) | |
tree | b8faa4b9b141fa6e7aa05e04286000bc4304dffb /plugins/CrashDumper | |
parent | 24fe627656e2f1c14294da5c654f270922ae1479 (diff) |
fix for random crash fix on start
Diffstat (limited to 'plugins/CrashDumper')
-rw-r--r-- | plugins/CrashDumper/src/dumper.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/plugins/CrashDumper/src/dumper.cpp b/plugins/CrashDumper/src/dumper.cpp index 498a5026e1..52d42d745e 100644 --- a/plugins/CrashDumper/src/dumper.cpp +++ b/plugins/CrashDumper/src/dumper.cpp @@ -422,10 +422,7 @@ void PrintVersionInfo(CMStringW& buffer, unsigned flags) wchar_t profpn[MAX_PATH];
mir_snwprintf(profpn, L"%s\\%s", profpathfull, profname);
-
- DATABASELINK *db = FindDatabasePlugin(profpn);
-
- buffer.AppendFormat(L"Profile: %s (%s)\r\n", profpn, db->szFullName);
+ buffer.AppendFormat(L"Profile: %s\r\n", profpn);
if (flags & VI_FLAG_PRNVAR) {
WIN32_FIND_DATA FindFileData;
@@ -443,9 +440,6 @@ void PrintVersionInfo(CMStringW& buffer, unsigned flags) GetLanguagePackString(buffer);
buffer.Append(L"\r\n");
- // buffer.AppendFormat(L"Nightly: %s\r\n"), wcsstr(vertxt, L"alpha")) ? L"Yes") : L"No"));
- // buffer.AppendFormat(L"Unicode: %s\r\n"), wcsstr(vertxt, L"Unicode")) ? L"Yes") : L"No"));
-
GetPluginsString(buffer, flags);
if (flags & VI_FLAG_WEATHER) {
|