Support displaying memory at base 0 in HexDump
This commit is contained in:
parent
735d7d7450
commit
566f0d07d5
|
@ -162,7 +162,7 @@ void HexDump::printDumpAt(duint parVA, bool select, bool repaint, bool updateTab
|
||||||
{
|
{
|
||||||
duint size = 0;
|
duint size = 0;
|
||||||
auto base = DbgMemFindBaseAddr(parVA, &size); //get memory base
|
auto base = DbgMemFindBaseAddr(parVA, &size); //get memory base
|
||||||
if(!base || !size)
|
if(size == 0)
|
||||||
return;
|
return;
|
||||||
auto rva = parVA - base; //calculate rva
|
auto rva = parVA - base; //calculate rva
|
||||||
auto bytePerRowCount = getBytePerRowCount(); //get the number of bytes per row
|
auto bytePerRowCount = getBytePerRowCount(); //get the number of bytes per row
|
||||||
|
|
Loading…
Reference in New Issue