mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Prevent checking file hash with an empty path
A warning is issued from Qt when the path is empty. This happens most often during test runs, but can also occur when closing a database before everything gets cleaned up.
This commit is contained in:
parent
f19d254a0c
commit
c464f2bfe9
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ void FileWatcher::checkFileChanged()
|
|||
QByteArray FileWatcher::calculateChecksum()
|
||||
{
|
||||
QFile file(m_filePath);
|
||||
if (file.open(QFile::ReadOnly)) {
|
||||
if (!m_filePath.isEmpty() && file.open(QFile::ReadOnly)) {
|
||||
QCryptographicHash hash(QCryptographicHash::Sha256);
|
||||
if (m_fileChecksumSizeBytes > 0) {
|
||||
hash.addData(file.read(m_fileChecksumSizeBytes));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue