mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Fix some compiler warnings.
Implements parts of https://gitorious.org/keepassx/keepassx/merge_requests/18
This commit is contained in:
parent
98df309d28
commit
4b6cae0fcd
2 changed files with 8 additions and 5 deletions
|
@ -694,7 +694,7 @@ bool KeePass1Reader::parseGroupTreeState(const QByteArray& data)
|
|||
quint32 num = Endian::bytesToUInt32(data.mid(pos, 4), KeePass1::BYTEORDER);
|
||||
pos += 4;
|
||||
|
||||
if ((data.size() - 4) != (num * 5)) {
|
||||
if (static_cast<quint32>(data.size() - 4) != (num * 5)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -739,7 +739,7 @@ bool KeePass1Reader::parseCustomIcons4(const QByteArray& data)
|
|||
quint32 iconSize = Endian::bytesToUInt32(data.mid(pos, 4), KeePass1::BYTEORDER);
|
||||
pos += 4;
|
||||
|
||||
if (data.size() < (pos + iconSize)) {
|
||||
if (static_cast<quint32>(data.size()) < (pos + iconSize)) {
|
||||
return false;
|
||||
}
|
||||
QImage icon = QImage::fromData(data.mid(pos, iconSize));
|
||||
|
@ -754,7 +754,7 @@ bool KeePass1Reader::parseCustomIcons4(const QByteArray& data)
|
|||
m_db->metadata()->addCustomIcon(uuid, icon);
|
||||
}
|
||||
|
||||
if (data.size() < (pos + numEntries * 20)) {
|
||||
if (static_cast<quint32>(data.size()) < (pos + numEntries * 20)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -770,7 +770,7 @@ bool KeePass1Reader::parseCustomIcons4(const QByteArray& data)
|
|||
}
|
||||
}
|
||||
|
||||
if (data.size() < (pos + numGroups * 8)) {
|
||||
if (static_cast<quint32>(data.size()) < (pos + numGroups * 8)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue