fixed crash reports for windows

This commit is contained in:
John Preston 2016-02-01 15:09:23 +03:00
parent 9f7b92eccd
commit 44c12064a6
2 changed files with 4 additions and 1 deletions

View File

@ -19,7 +19,7 @@ Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
Copyright (c) 2014-2015 John Preston, https://desktop.telegram.org
*/
#include "stdafx.h"
#include <iostream>
#include <signal.h>
#include "pspecific.h"
// see https://blog.inventic.eu/2012/08/qt-and-google-breakpad/

View File

@ -2024,6 +2024,9 @@ LastCrashedWindow::LastCrashedWindow()
if (!possibleDump.startsWith('/')) {
possibleDump = cWorkingDir() + qsl("tdumps/") + possibleDump;
}
if (!possibleDump.endsWith('.dmp')) {
possibleDump += qsl(".dmp");
}
QFileInfo possibleInfo(possibleDump);
if (possibleInfo.exists()) {
_minidumpName = possibleInfo.fileName();