Skip to content

Commit

Permalink
Fix oops
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwrighton committed Dec 19, 2023
1 parent 67af66d commit 3dc1e0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/vm/clsload.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3673,7 +3673,7 @@ VOID ClassLoader::AddExportedTypeHaveLock(Module *pManifestModule,

_ASSERTE(insertedEntry != NULL);
COUNT_T exportedEntryIndex = RidFromToken(cl) - 1;
if (classEntryIndex < exportedEntries->GetCount())
if (exportedEntryIndex < exportedEntries->GetCount())
{
(*exportedEntries)[exportedEntryIndex] = insertedEntry;
}
Expand Down

0 comments on commit 3dc1e0a

Please sign in to comment.