Merge PR #5393: FIX(crypto): no such function empty for QByteArray

This commit is contained in:
Robert Adam 2021-12-29 13:22:22 +01:00 committed by GitHub
commit f52e6ba3d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -105,7 +105,7 @@ QByteArray CryptographicHashPrivate::result() {
m_result = digest;
assert(!m_result.empty());
assert(!m_result.isEmpty());
return m_result;
}