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
Next Next commit
fix incorrect assert
  • Loading branch information
davmason committed Jun 17, 2020
commit 6a5179507cdf28afdb3fe4f4821ad3bd7bd49628
5 changes: 4 additions & 1 deletion src/SOS/Strike/eeheap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,10 @@ BOOL GCObjInLargeSegment(TADDR taddrObj, const GCHeapDetails &heap, TADDR_SEGINF

BOOL GCObjInPinnedObjectSegment(TADDR taddrObj, const GCHeapDetails &heap, TADDR_SEGINFO& rngSeg)
{
_ASSERTE(heap.has_poh);
if (!heap.has_poh)
{
return FALSE;
}

TADDR taddrSeg;
DacpHeapSegmentData dacpSeg;
Expand Down