Skip to content

Commit 55b3672

Browse files
committed
Fix bug
1 parent acc7542 commit 55b3672

File tree

1 file changed

+1
-1
lines changed
  • src/coreclr/nativeaot/System.Private.CoreLib/src/System

1 file changed

+1
-1
lines changed

src/coreclr/nativeaot/System.Private.CoreLib/src/System/Delegate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ private static bool EqualInvocationLists(Wrapper[] a, Wrapper[] b, int start, in
566566
int invocationCount = (int)_extraFunctionPointerOrData;
567567
for (int i = invocationCount; --i >= 0;)
568568
{
569-
if (d.Equals(invocationList[i]))
569+
if (d.Equals(invocationList[i].Value))
570570
{
571571
if (invocationCount == 2)
572572
{

0 commit comments

Comments
 (0)