Skip to content

Commit

Permalink
[BUGFIX] Fixed wrong interpretation of a flag
Browse files Browse the repository at this point in the history
  • Loading branch information
hasherezade committed Jun 12, 2024
1 parent 9014b9e commit d921268
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser/pe/SectHdrsWrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ void SectionHdrWrapper::initSecCharacter(std::map<DWORD, QString> &secHdrCharact
secHdrCharact[SCN_LNK_NRELOC_OVFL] = "contains extended relocations";
secHdrCharact[SCN_MEM_DISCARDABLE] = "discardable";
secHdrCharact[SCN_MEM_NOT_CACHED] = "not cachable";
secHdrCharact[SCN_MEM_NOT_PAGED] = "pageable";
secHdrCharact[SCN_MEM_NOT_PAGED] = "non-pageable";
secHdrCharact[SCN_MEM_SHARED] = "shareable";
secHdrCharact[SCN_CNT_CODE] = "code";
secHdrCharact[SCN_CNT_INITIALIZED_DATA] = "initialized data";
Expand Down

0 comments on commit d921268

Please sign in to comment.