mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-12-26 07:49:50 -05:00
Using QScopedPointer
This commit is contained in:
parent
0fe06b3fbb
commit
a1aad5d165
@ -162,8 +162,8 @@ void DatabaseOpenWidget::enterKey(const QString& pw, const QString& keyFile)
|
||||
void DatabaseOpenWidget::openDatabase()
|
||||
{
|
||||
KeePass2Reader reader;
|
||||
CompositeKey* masterKey = databaseKey();
|
||||
if (masterKey == nullptr) {
|
||||
QScopedPointer<CompositeKey> masterKey(databaseKey());
|
||||
if (masterKey.isNull()) {
|
||||
return;
|
||||
}
|
||||
|
||||
@ -190,8 +190,6 @@ void DatabaseOpenWidget::openDatabase()
|
||||
MessageWidget::Error);
|
||||
m_ui->editPassword->clear();
|
||||
}
|
||||
|
||||
delete masterKey;
|
||||
}
|
||||
|
||||
CompositeKey* DatabaseOpenWidget::databaseKey()
|
||||
|
Loading…
Reference in New Issue
Block a user