Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/coreclr/inc/cor.h
Original file line number Diff line number Diff line change
Expand Up @@ -1942,7 +1942,7 @@ inline ULONG CorSigUncompressData( // return number of bytes of that compre
ULONG dwSizeOfData = 0;

// We don't know how big the signature is, so we'll just say that it's big enough
if (FAILED(CorSigUncompressData(pData, 0xff, pDataOut, &dwSizeOfData)))
if (FAILED(CorSigUncompressData(pData, 0xff, reinterpret_cast<uint32_t *>(pDataOut), reinterpret_cast<uint32_t *>(&dwSizeOfData))))
{
*pDataOut = 0;
return (ULONG)-1;
Expand Down