mirror of https://github.com/x64dbg/GleeBug
remove debug prints
This commit is contained in:
parent
a508dc2796
commit
fcc69d311b
|
|
@ -161,10 +161,7 @@ namespace GleeBug
|
||||||
uint32 afterOptionalSize = realSizeOfIoh < sizeOfIoh ? sizeOfIoh - realSizeOfIoh : 0;
|
uint32 afterOptionalSize = realSizeOfIoh < sizeOfIoh ? sizeOfIoh - realSizeOfIoh : 0;
|
||||||
mAfterOptionalData = readRegion<uint8>(afterOptionalSize);
|
mAfterOptionalData = readRegion<uint8>(afterOptionalSize);
|
||||||
if (!mAfterOptionalData)
|
if (!mAfterOptionalData)
|
||||||
{
|
|
||||||
printf("realSizeOfIoh: %u, sizeOfIoh: %u, afterOptionalSize: %u\n", realSizeOfIoh, sizeOfIoh, afterOptionalSize);
|
|
||||||
return ErrorAfterOptionalHeaderDataRead;
|
return ErrorAfterOptionalHeaderDataRead;
|
||||||
}
|
|
||||||
|
|
||||||
//read the section headers
|
//read the section headers
|
||||||
mSectionHeaders = readRegion<IMAGE_SECTION_HEADER>(numberOfSections);
|
mSectionHeaders = readRegion<IMAGE_SECTION_HEADER>(numberOfSections);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue