mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Fix crash on screen lock or computer sleep
* Fixes #10455 * Fixes #10432 * Fixes #10415 Prevent setting critical key components to nullptr when database data is cleared. This can result in a crash due to race condition between threads. Added a bunch of asserts to detect this problem and if guards to prevent actual crashes.
This commit is contained in:
parent
f60601fa67
commit
6481ecccd7
5 changed files with 44 additions and 25 deletions
|
@ -582,7 +582,9 @@ void TestKeePass2Format::testKdbxKeyChange()
|
|||
|
||||
db->setKey(key1);
|
||||
writeKdbx(&buffer, db.data(), hasError, errorString);
|
||||
QVERIFY(!hasError);
|
||||
if (hasError) {
|
||||
QFAIL(qPrintable(QStringLiteral("Error while reading database: ").append(errorString)));
|
||||
}
|
||||
|
||||
// read database
|
||||
db = QSharedPointer<Database>::create();
|
||||
|
@ -599,7 +601,9 @@ void TestKeePass2Format::testKdbxKeyChange()
|
|||
// write database
|
||||
buffer.seek(0);
|
||||
writeKdbx(&buffer, db.data(), hasError, errorString);
|
||||
QVERIFY(!hasError);
|
||||
if (hasError) {
|
||||
QFAIL(qPrintable(QStringLiteral("Error while reading database: ").append(errorString)));
|
||||
}
|
||||
|
||||
// read database
|
||||
db = QSharedPointer<Database>::create();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue