diff options
Diffstat (limited to 'attache/DebugTools.cpp')
-rw-r--r-- | attache/DebugTools.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/attache/DebugTools.cpp b/attache/DebugTools.cpp index 0940a10..752ba03 100644 --- a/attache/DebugTools.cpp +++ b/attache/DebugTools.cpp @@ -346,6 +346,7 @@ BOOL CALLBACK MyMiniDumpCallback(PVOID pParam, const PMINIDUMP_CALLBACK_INPUT pI case MemoryCallback:
// We do not include any information here -> return FALSE
+ // check pOutput base address to see if it's our crashing plugin?
bRet = FALSE;
break;
@@ -490,7 +491,9 @@ LONG CreateMiniDump( EXCEPTION_POINTERS* pep ) { TCHAR *stzBzipFilename = a2t(szBzipFilename);
TCHAR msg[1024];
- mir_sntprintf(msg, 1024, TranslateT("MiniDump crash dump created.\nCrash in module: %s\n\nUpload to miranda-im.org?"), szModuleFileName, stzBzipFilename);
+ mir_sntprintf(msg, 1024, TranslateT("MiniDump crash dump created.\nCrash in module: %s\n\nUpload to miranda-im.org?"
+ "\n\nPlease be aware that this data includes\na snapshot of the state of the Miranda\n"
+ "program at the time of the crash.\nThis may include personal information."), szModuleFileName, stzBzipFilename);
// upload?
if(options.upload && (!options.confirm_upload ||
|