Skip to content

Commit e3c2ce3

Browse files
Apply suggestion from @AaronRobinsonMSFT
1 parent a1e2706 commit e3c2ce3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/coreclr/System.Private.CoreLib/src/System/StubHelpers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1392,7 +1392,7 @@ internal static Exception GetHRExceptionObject(int hr)
13921392
#if FEATURE_COMINTEROP
13931393
internal static unsafe Exception GetCOMHRExceptionObject(int hr, IntPtr pCPCMD, IntPtr pUnk)
13941394
{
1395-
Debug.Assert(pCPCMD != IntPtr.Zero)
1395+
Debug.Assert(pCPCMD != IntPtr.Zero);
13961396
MethodTable* interfaceType = GetComInterfaceFromMethodDesc(pCPCMD);
13971397
RuntimeType declaringType = RuntimeTypeHandle.GetRuntimeType(interfaceType);
13981398
Exception ex = Marshal.GetExceptionForHR(hr, declaringType.GUID, pUnk)!;

0 commit comments

Comments
 (0)