mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Fix memory leak in test
This commit is contained in:
parent
3095e29507
commit
2d945bc215
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ void TestOpVaultReader::testReadIntoDatabase()
|
|||
QDir opVaultDir(m_opVaultPath);
|
||||
|
||||
OpVaultReader reader;
|
||||
auto db = reader.readDatabase(opVaultDir, "a");
|
||||
QScopedPointer<Database> db(reader.readDatabase(opVaultDir, "a"));
|
||||
QVERIFY(db);
|
||||
QVERIFY2(!reader.hasError(), qPrintable(reader.errorString()));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue