We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1e2706 commit e3c2ce3Copy full SHA for e3c2ce3
src/coreclr/System.Private.CoreLib/src/System/StubHelpers.cs
@@ -1392,7 +1392,7 @@ internal static Exception GetHRExceptionObject(int hr)
1392
#if FEATURE_COMINTEROP
1393
internal static unsafe Exception GetCOMHRExceptionObject(int hr, IntPtr pCPCMD, IntPtr pUnk)
1394
{
1395
- Debug.Assert(pCPCMD != IntPtr.Zero)
+ Debug.Assert(pCPCMD != IntPtr.Zero);
1396
MethodTable* interfaceType = GetComInterfaceFromMethodDesc(pCPCMD);
1397
RuntimeType declaringType = RuntimeTypeHandle.GetRuntimeType(interfaceType);
1398
Exception ex = Marshal.GetExceptionForHR(hr, declaringType.GUID, pUnk)!;
0 commit comments