Skip to content

Commit

Permalink
Fix narrow indirect address searches not working
Browse files Browse the repository at this point in the history
  • Loading branch information
zorgiepoo committed Dec 22, 2023
1 parent e311319 commit 36fda3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Bit Slicer/ZGSearchFunctions.mm
Original file line number Diff line number Diff line change
Expand Up @@ -2400,7 +2400,7 @@ static int _sortPointerMapTable(const void *entry1, const void *entry2)
if (narrowRegionsTable != nullptr)
{
ZGRegionValue *regionValue = &narrowRegionsTable[regionIndex];
regionValue->address = address;
regionValue->address = region->_address;
regionValue->size = region->_size;
regionValue->bytes = bytes;
}
Expand Down

0 comments on commit 36fda3b

Please sign in to comment.