Skip to content

Commit 2d11434

Browse files
authored
Fix unmatched transition callback in JIT_ReversePInvokeExitTrackTransitions (#59919)
Fixes #59917
1 parent 6fb5ef7 commit 2d11434

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/coreclr/vm/jithelpers.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5543,7 +5543,7 @@ HCIMPL1_RAW(void, JIT_ReversePInvokeExitTrackTransitions, ReversePInvokeFrame* f
55435543
#ifdef PROFILING_SUPPORTED
55445544
if (CORProfilerTrackTransitions())
55455545
{
5546-
ProfilerUnmanagedToManagedTransitionMD(frame->pMD, COR_PRF_TRANSITION_RETURN);
5546+
ProfilerManagedToUnmanagedTransitionMD(frame->pMD, COR_PRF_TRANSITION_RETURN);
55475547
}
55485548
#endif
55495549
}

0 commit comments

Comments
 (0)