Skip to content

Commit fa004fb

Browse files
authored
Fix issue where wrong message was added to EventReporter. (#113969)
#113416 used a shared SString buffer when building the log message written to console when hitting an unhandled managed exception. It appears that the same buffer was used when passing data over to EventReporter, but it would then include more information than expected. This will fix so we only pass over the exception message, inline with previous beharior. Fixes issue found in dotnet/aspnetcore#61011.
1 parent c74241f commit fa004fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/coreclr/vm/excep.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -4808,9 +4808,9 @@ DefaultCatchHandlerExceptionMessageWorker(Thread* pThread,
48084808

48094809
if (IsException(throwable->GetMethodTable()))
48104810
{
4811-
if (!message.IsEmpty())
4811+
if (!exceptionMessage.IsEmpty())
48124812
{
4813-
reporter.AddDescription(message);
4813+
reporter.AddDescription(exceptionMessage);
48144814
}
48154815
reporter.Report();
48164816
}

0 commit comments

Comments
 (0)