parse: Remove debug print

This commit is contained in:
William Woodruff 2019-10-21 12:18:18 -04:00
parent 2c775e5d6a
commit b3ab75577d
No known key found for this signature in database
GPG Key ID: 70F70A3979DDCED3

View File

@ -2241,8 +2241,6 @@ const void *GetDataDirectoryEntry(parsed_pe *pe, data_directory_kind dirnum) {
return nullptr; return nullptr;
} }
std::cerr << "off: 0x" << std::hex << off << std::endl;
std::vector<uint8_t> rawEntry(sec.sectionData->buf + off, std::vector<uint8_t> rawEntry(sec.sectionData->buf + off,
sec.sectionData->buf + off + dir.Size); sec.sectionData->buf + off + dir.Size);