mirror of https://github.com/procxx/kepka.git
fixed crash reports for windows
This commit is contained in:
parent
9f7b92eccd
commit
44c12064a6
|
@ -19,7 +19,7 @@ Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
||||||
Copyright (c) 2014-2015 John Preston, https://desktop.telegram.org
|
Copyright (c) 2014-2015 John Preston, https://desktop.telegram.org
|
||||||
*/
|
*/
|
||||||
#include "stdafx.h"
|
#include "stdafx.h"
|
||||||
#include <iostream>
|
#include <signal.h>
|
||||||
#include "pspecific.h"
|
#include "pspecific.h"
|
||||||
|
|
||||||
// see https://blog.inventic.eu/2012/08/qt-and-google-breakpad/
|
// see https://blog.inventic.eu/2012/08/qt-and-google-breakpad/
|
||||||
|
|
|
@ -2024,6 +2024,9 @@ LastCrashedWindow::LastCrashedWindow()
|
||||||
if (!possibleDump.startsWith('/')) {
|
if (!possibleDump.startsWith('/')) {
|
||||||
possibleDump = cWorkingDir() + qsl("tdumps/") + possibleDump;
|
possibleDump = cWorkingDir() + qsl("tdumps/") + possibleDump;
|
||||||
}
|
}
|
||||||
|
if (!possibleDump.endsWith('.dmp')) {
|
||||||
|
possibleDump += qsl(".dmp");
|
||||||
|
}
|
||||||
QFileInfo possibleInfo(possibleDump);
|
QFileInfo possibleInfo(possibleDump);
|
||||||
if (possibleInfo.exists()) {
|
if (possibleInfo.exists()) {
|
||||||
_minidumpName = possibleInfo.fileName();
|
_minidumpName = possibleInfo.fileName();
|
||||||
|
|
Loading…
Reference in New Issue