Skip to content

Commit

Permalink
Fix: 2021-12-07
Browse files Browse the repository at this point in the history
  • Loading branch information
horsicq committed Dec 7, 2021
1 parent e7d7ccc commit 0f730bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xpe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2269,11 +2269,11 @@ quint32 XPE::getImportHash32(_MEMORY_MAP *pMemoryMap)

QList<IMPORT_RECORD> listImportRecords=getImportRecords(pMemoryMap);

int nNumberOfImports=listImportRecords.count();
qint32 nNumberOfImports=listImportRecords.count();

QString sRecord;

for(int i=0;i<nNumberOfImports; i++)
for(qint32 i=0;i<nNumberOfImports; i++)
{
sRecord+=listImportRecords.at(i).sLibrary+listImportRecords.at(i).sFunction;
}
Expand Down

0 comments on commit 0f730bf

Please sign in to comment.