Skip to content

Commit bf35676

Browse files
committed
Fix GetNonGCHeapBounds
1 parent 0be256e commit bf35676

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/coreclr/vm/proftoeeinterfaceimpl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7675,7 +7675,7 @@ HRESULT ProfToEEInterfaceImpl::GetNonGCHeapBounds(ULONG cObjectRanges,
76757675

76767676
if (pcObjectRanges != nullptr)
76777677
{
7678-
*pcObjectRanges = segmentsToInspect;
7678+
*pcObjectRanges = (ULONG)segmentsCount;
76797679
}
76807680
}
76817681
else

0 commit comments

Comments
 (0)