remove debug prints

This commit is contained in:
mrexodia 2016-01-10 16:37:10 +01:00
parent a508dc2796
commit fcc69d311b
1 changed files with 0 additions and 3 deletions

View File

@ -161,10 +161,7 @@ namespace GleeBug
uint32 afterOptionalSize = realSizeOfIoh < sizeOfIoh ? sizeOfIoh - realSizeOfIoh : 0;
mAfterOptionalData = readRegion<uint8>(afterOptionalSize);
if (!mAfterOptionalData)
{
printf("realSizeOfIoh: %u, sizeOfIoh: %u, afterOptionalSize: %u\n", realSizeOfIoh, sizeOfIoh, afterOptionalSize);
return ErrorAfterOptionalHeaderDataRead;
}
//read the section headers
mSectionHeaders = readRegion<IMAGE_SECTION_HEADER>(numberOfSections);