Skip to content
This repository was archived by the owner on Nov 1, 2020. It is now read-only.
Closed
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
Change logic as per suggestion
  • Loading branch information
yowl committed Jul 24, 2020
commit ec6822845dae988ca4951c0896d1d3b28ccf18d6
2 changes: 1 addition & 1 deletion src/Native/gc/gc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17835,7 +17835,7 @@ uint8_t* gc_heap::find_object (uint8_t* interior)
heap_segment* seg = find_segment (interior, FALSE);
if (seg
#ifdef FEATURE_CONSERVATIVE_GC
&& (GCConfig::GetConservativeGC() || interior <= heap_segment_allocated(seg))
&& (!GCConfig::GetConservativeGC() || interior <= heap_segment_allocated(seg))
#endif
)
{
Expand Down