Skip to content

Commit

Permalink
Changed the boolean parameter in the PEModuleInfo constructor from fa…
Browse files Browse the repository at this point in the history
…lse to true within CoreDumpReader.cs (microsoft#1279)
  • Loading branch information
stjeong committed Jul 18, 2024
1 parent eac78be commit e0f0857
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ private ModuleInfo CreateModuleInfo(ElfLoadedImage image)
return new ElfModuleInfo(this, file, image.BaseAddress, size, path);
}

return new PEModuleInfo(this, image.BaseAddress, path, false);
return new PEModuleInfo(this, image.BaseAddress, path, true);
}

public void FlushCachedData()
Expand Down

0 comments on commit e0f0857

Please sign in to comment.