Browse Source

Fix #1910: NRE in ViewState.Equals

pull/1914/head
Siegfried Pammer 6 years ago
parent
commit
7f427a3c6f
  1. 4
      ILSpy/TextView/DecompilerTextView.cs

4
ILSpy/TextView/DecompilerTextView.cs

@ -1070,7 +1070,9 @@ namespace ICSharpCode.ILSpy.TextView
public virtual bool Equals(ViewState other) public virtual bool Equals(ViewState other)
{ {
return ViewedUri == other.ViewedUri && (DecompiledNodes == other.DecompiledNodes || DecompiledNodes?.SetEquals(other.DecompiledNodes) == true); return other != null
&& ViewedUri == other.ViewedUri
&& (DecompiledNodes == other.DecompiledNodes || DecompiledNodes?.SetEquals(other.DecompiledNodes) == true);
} }
} }

Loading…
Cancel
Save