mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 07:58:22 +08:00
Pleasing Clang
- just a pair of explicit int to uint32_t conversions
This commit is contained in:
parent
9cd5022698
commit
635605e0c9
@ -2921,7 +2921,7 @@ STATUS FfsParser::parseNvarStore(const QByteArray & data, const QModelIndex & in
|
|||||||
QByteArray padding = data.mid(offset, unparsedSize);
|
QByteArray padding = data.mid(offset, unparsedSize);
|
||||||
UINT8 type;
|
UINT8 type;
|
||||||
|
|
||||||
if (padding.count(emptyByte) == unparsedSize) {
|
if ((UINT32)padding.count(emptyByte) == unparsedSize) {
|
||||||
// It's a free space
|
// It's a free space
|
||||||
name = QObject::tr("Free space");
|
name = QObject::tr("Free space");
|
||||||
type = Types::FreeSpace;
|
type = Types::FreeSpace;
|
||||||
@ -3028,7 +3028,7 @@ STATUS FfsParser::parseNvarStore(const QByteArray & data, const QModelIndex & in
|
|||||||
|
|
||||||
// Entry with authenticated write (for SecureBoot)
|
// Entry with authenticated write (for SecureBoot)
|
||||||
if (entryHeader->Attributes & NVRAM_NVAR_ENTRY_AUTH_WRITE) {
|
if (entryHeader->Attributes & NVRAM_NVAR_ENTRY_AUTH_WRITE) {
|
||||||
if (extendedData.size() < sizeof(UINT64) + SHA256_HASH_SIZE) {
|
if ((UINT32)extendedData.size() < sizeof(UINT64) + SHA256_HASH_SIZE) {
|
||||||
msgExtDataTooShort = true;
|
msgExtDataTooShort = true;
|
||||||
isInvalid = true;
|
isInvalid = true;
|
||||||
// Do not parse further
|
// Do not parse further
|
||||||
|
Loading…
Reference in New Issue
Block a user