mirror of https://github.com/x64dbg/GleeBug
Implement UE_SIZEOFIMAGE in GetPE32Data*
This commit is contained in:
parent
8f3dacb9b0
commit
9a2f5e4358
|
|
@ -818,6 +818,8 @@ public:
|
|||
return WhichSection < sections.size() ? ULONG_PTR(§ions.at(WhichSection).GetHeader().Name[0]) : 0;
|
||||
case UE_IMAGEBASE:
|
||||
return headers->OptionalHeader.ImageBase;
|
||||
case UE_SIZEOFIMAGE:
|
||||
return headers->OptionalHeader.SizeOfImage;
|
||||
case UE_RELOCATIONTABLEADDRESS:
|
||||
return headers->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_BASERELOC].VirtualAddress;
|
||||
case UE_RELOCATIONTABLESIZE:
|
||||
|
|
|
|||
Loading…
Reference in New Issue