Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit f30a8de

Browse files
adityamandaleekajkotas
authored andcommitted
Fix a couple of paths related to exception codes. (#6497)
1 parent 05423e2 commit f30a8de

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/inc/corexcep.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
// All COM+ exceptions are expressed as a RaiseException with this exception
1616
// code. If you change this value, you must also change
17-
// bcl\src\system\Exception.cs's _COMPlusExceptionCode value.
17+
// mscorlib\src\system\Exception.cs's _COMPlusExceptionCode value.
1818

1919
#define EXCEPTION_MSVC 0xe06d7363 // 0xe0000000 | 'msc'
2020

src/mscorlib/src/System/Exception.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -891,7 +891,7 @@ protected set
891891
private SafeSerializationManager _safeSerializationManager;
892892
#endif // FEATURE_SERIALIZATION
893893

894-
// See clr\src\vm\excep.h's EXCEPTION_COMPLUS definition:
894+
// See src\inc\corexcep.h's EXCEPTION_COMPLUS definition:
895895
private const int _COMPlusExceptionCode = unchecked((int)0xe0434352); // Win32 exception code for COM+ exceptions
896896

897897
// InternalToString is called by the runtime to get the exception text

0 commit comments

Comments
 (0)