mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-09-25 17:00:36 -09:00
Merge remote-tracking branch 'origin/patch'
This commit is contained in:
@@ -46,6 +46,11 @@ public class DyldChainedStartsInImage implements StructConverter {
|
||||
ArrayList<DyldChainedStartsInSegment> starts = new ArrayList<>();
|
||||
for (int off : seg_info_offset) {
|
||||
|
||||
// off == 0 means there is no associated starts_in_segment entry
|
||||
if (off == 0) {
|
||||
continue;
|
||||
}
|
||||
|
||||
reader.setPointerIndex(ptrIndex + off);
|
||||
starts.add(new DyldChainedStartsInSegment(reader));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user