mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-24 15:25:31 -04:00
Using QScopedPointer
This commit is contained in:
parent
0fe06b3fbb
commit
a1aad5d165
1 changed files with 2 additions and 4 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue