(self, data)
| 523 | |
| 524 | class LoadRPath(LoadCommand): |
| 525 | def __init__(self, data): |
| 526 | super().__init__(data) |
| 527 | self.offset = unpack("<L", self.FR.read(4))[0] |
| 528 | self.FR.setOffset(self.offset) |
| 529 | self.path = self.FR.readString(4) |
| 530 | |
| 531 | |
| 532 | class LoadIdDylib(LoadCommand): |
nothing calls this directly
no test coverage detected