Skip to content

Commit

Permalink
Fix mismatched buffer element type (#100779)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkoritzinsky authored Apr 10, 2024
1 parent 3462976 commit 89aae24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/md/datasource/targettypes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ m_rENCRecs(0)
{
memset(&m_pLookUpHashes, 0, TBL_COUNT*sizeof(CORDB_ADDRESS));
memset(&m_pVS, 0, TBL_COUNT*sizeof(CORDB_ADDRESS));
memset(&m_bSortable, 0, TBL_COUNT*sizeof(BOOL));
memset(&m_bSortable, 0, TBL_COUNT*sizeof(BYTE));
}

HRESULT Target_CMiniMdRW::ReadFrom(DataTargetReader & reader)
Expand Down

0 comments on commit 89aae24

Please sign in to comment.