Skip to content

Commit

Permalink
Fix DumpStackObjects <bounds> error (#4384)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikem8361 authored Nov 7, 2023
1 parent 8137b6e commit d76b189
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public override void Invoke()
}

MemoryRange range;
if (Bounds is null || Bounds.Length == 0)
if (Bounds is not null || Bounds.Length == 0)
{
range = GetStackRange();
}
Expand Down

0 comments on commit d76b189

Please sign in to comment.