File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
lldb/source/Plugins/ObjectFile/Mach-O Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -1705,7 +1705,8 @@ void ObjectFileMachO::ProcessSegmentCommand(
17051705 // a 4GB boundary. llvm::MachO::section_64 have only 32 bit file offsets
17061706 // for the file offset of the section contents, so we need to track and
17071707 // sections that overflow and adjust the offsets accordingly.
1708- const uint64_t section_file_offset = (uint64_t )sect64.offset + section_offset_adjust;
1708+ const uint64_t section_file_offset =
1709+ (uint64_t )sect64.offset + section_offset_adjust;
17091710 const uint64_t end_section_offset = (uint64_t )sect64.offset + sect64.size ;
17101711 if (end_section_offset >= UINT32_MAX)
17111712 section_offset_adjust += end_section_offset & 0xFFFFFFFF00000000ull ;
You can’t perform that action at this time.
0 commit comments