Merge remote-tracking branch 'origin/patch'

This commit is contained in:
Ryan Kurtz
2023-03-01 08:05:31 -05:00

View File

@@ -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));
}