COMMON: Fix MSVC warning in PEResources::parseResourceLevel()
This commit is contained in:
parent
878d72b387
commit
62e8233009
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ void PEResources::parseResourceLevel(Section §ion, uint32 offset, int level)
|
|||
uint16 namedEntryCount = _exe->readUint16LE();
|
||||
uint16 intEntryCount = _exe->readUint16LE();
|
||||
|
||||
for (uint32 i = 0; i < namedEntryCount + intEntryCount; i++) {
|
||||
for (uint32 i = 0; i < (uint32)(namedEntryCount + intEntryCount); i++) {
|
||||
uint32 value = _exe->readUint32LE();
|
||||
|
||||
WinResourceID id;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue