mirror of https://github.com/procxx/kepka.git
fixed double fclose of crash dump file, removed block user context menu item for App::self()
This commit is contained in:
parent
f775d27371
commit
17aaa5ceab
|
@ -619,7 +619,7 @@ void DialogsInner::contextMenuEvent(QContextMenuEvent *e) {
|
|||
if (_menuPeer->isUser()) {
|
||||
_menu->addAction(lang(lng_profile_clear_history), this, SLOT(onContextClearHistory()))->setEnabled(true);
|
||||
_menu->addAction(lang(lng_profile_delete_conversation), this, SLOT(onContextDeleteAndLeave()))->setEnabled(true);
|
||||
if (_menuPeer->asUser()->access != UserNoAccess) {
|
||||
if (_menuPeer->asUser()->access != UserNoAccess && _menuPeer != App::self()) {
|
||||
_menu->addAction(lang((_menuPeer->asUser()->blocked == UserIsBlocked) ? (_menuPeer->asUser()->botInfo ? lng_profile_unblock_bot : lng_profile_unblock_user) : (_menuPeer->asUser()->botInfo ? lng_profile_block_bot : lng_profile_block_user)), this, SLOT(onContextToggleBlock()))->setEnabled(true);
|
||||
connect(App::main(), SIGNAL(peerUpdated(PeerData*)), this, SLOT(peerUpdated(PeerData*)));
|
||||
}
|
||||
|
|
|
@ -607,7 +607,7 @@ void _moveOldDataFiles(const QString &wasDir) {
|
|||
namespace SignalHandlers {
|
||||
|
||||
QString CrashDumpPath;
|
||||
FILE *CrashDumpFile = 0;
|
||||
FILE *CrashDumpFile = nullptr;
|
||||
int CrashDumpFileNo = 0;
|
||||
char LaunchedDateTimeStr[32] = { 0 };
|
||||
char LaunchedBinaryName[256] = { 0 };
|
||||
|
@ -999,6 +999,8 @@ namespace SignalHandlers {
|
|||
FinishBreakpad();
|
||||
if (CrashDumpFile) {
|
||||
fclose(CrashDumpFile);
|
||||
CrashDumpFile = nullptr;
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
_wunlink(CrashDumpPath.toStdWString().c_str());
|
||||
#else
|
||||
|
|
Loading…
Reference in New Issue