| 163 | } |
| 164 | |
| 165 | const IMAGE_SECTION_HEADER* PEParser::GetSectionHeader(ULONG section) const { |
| 166 | if (!IsValid() || section >= _fileHeader->NumberOfSections) |
| 167 | return nullptr; |
| 168 | |
| 169 | return _sections + section; |
| 170 | } |
no outgoing calls
no test coverage detected