Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Fix x86 SOS test failures
  • Loading branch information
Mike McLaughlin committed Sep 9, 2022
commit 94bfbe4637d18961c7b4401fcc1d6b17d39e57ff
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ private void ApplyRelocations(IModule module, PEReader reader, int dataVA, byte[
PEMemoryBlock relocations = reader.GetSectionData(".reloc");
if (relocations.Length > 0)
{
ulong baseDelta = module.ImageBase - reader.PEHeaders.PEHeader.ImageBase;
ulong baseDelta = unchecked(module.ImageBase - reader.PEHeaders.PEHeader.ImageBase);
#if TRACE_VERBOSE
Trace.TraceInformation("ApplyRelocations: dataVA {0:X8} dataCB {1} baseDelta: {2:X16}", dataVA, data.Length, baseDelta);
#endif
Expand Down