Skip to content

Commit

Permalink
Fix System.Reflection.Metadata.MetadataUpdater.IsSupported (#55876)
Browse files Browse the repository at this point in the history
Issue: dotnet/aspnetcore#34440

Co-authored-by: Mike McLaughlin <[email protected]>
  • Loading branch information
github-actions[bot] and mikem8361 authored Jul 18, 2021
1 parent 8f05a12 commit 31de59e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/vm/assemblynative.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1461,7 +1461,7 @@ BOOL QCALLTYPE AssemblyNative::IsApplyUpdateSupported()
BEGIN_QCALL;

#ifdef EnC_SUPPORTED
BOOL result = CORDebuggerAttached() || g_pConfig->ForceEnc() || g_pConfig->DebugAssembliesModifiable();
result = CORDebuggerAttached() || g_pConfig->ForceEnc() || g_pConfig->DebugAssembliesModifiable();
#endif

END_QCALL;
Expand Down

0 comments on commit 31de59e

Please sign in to comment.