Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix GCHeapTraverse for empty POH
  • Loading branch information
cshung authored and Mike McLaughlin committed Jul 29, 2022
commit 18e12d05904753e6f6322b346cdd9728a355183f
2 changes: 1 addition & 1 deletion src/SOS/Strike/eeheap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
#include "safemath.h"
#include "releaseholder.h"


// This is the increment for the segment lookup data
const int nSegLookupStgIncrement = 100;

Expand Down Expand Up @@ -1572,6 +1571,7 @@ BOOL GCHeapTraverse(const GCHeapDetails &heap, AllocInfo* pallocInfo, VISITGCHEA
}

dwAddrCurrObj = (DWORD_PTR)segment.mem;
continue;
}
else
{
Expand Down