mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
Null check
This commit is contained in:
parent
2bb72eba02
commit
3d3bc7a062
@ -78,7 +78,7 @@ void NativeMessagingHost::run()
|
|||||||
QFile::remove(serverPath);
|
QFile::remove(serverPath);
|
||||||
|
|
||||||
// Ensure that STDIN is not being listened when proxy is used
|
// Ensure that STDIN is not being listened when proxy is used
|
||||||
if (m_notifier->isEnabled()) {
|
if (m_notifier && m_notifier->isEnabled()) {
|
||||||
m_notifier->setEnabled(false);
|
m_notifier->setEnabled(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user