File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -548,7 +548,7 @@ int32_t __stdcall RhpVectoredExceptionHandler(PEXCEPTION_POINTERS pExPtrs)
548
548
Thread * pThread = ThreadStore::GetCurrentThreadIfAvailable ();
549
549
if (pThread == NULL || !pThread->IsCurrentThreadInCooperativeMode ())
550
550
{
551
- // if we are not in coop mode or the thread is not hijacked , this cannot be our hijack
551
+ // if we are not in coop mode, this cannot be our hijack
552
552
// Perhaps some other runtime is responsible.
553
553
return EXCEPTION_CONTINUE_SEARCH;
554
554
}
Original file line number Diff line number Diff line change @@ -6756,8 +6756,8 @@ VEH_ACTION WINAPI CLRVectoredExceptionHandler(PEXCEPTION_POINTERS pExceptionInfo
6756
6756
{
6757
6757
if (pThread == NULL || !pThread->PreemptiveGCDisabled ())
6758
6758
{
6759
- // If we are not in coop mode or the thread is not hijacked , this cannot be our hijack.
6760
- // Perhaps someone else is trying to hijack us .
6759
+ // if we are not in coop mode, this cannot be our hijack
6760
+ // Perhaps some other runtime is responsible .
6761
6761
return VEH_CONTINUE_SEARCH;
6762
6762
}
6763
6763
You can’t perform that action at this time.
0 commit comments