Changeset 57 in kStuff
- Timestamp:
- Oct 11, 2013 2:22:55 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kLdr/kLdrModMachO.c
r56 r57 661 661 case S_SYMBOL_STUBS: 662 662 if ( pSect->reserved1 663 || pSect->reserved2 < 1 664 || pSect->reserved2 > 64 ) 663 || pSect->reserved2 > 64 /* stub size */ ) 665 664 return KLDR_ERR_MACHO_BAD_SECTION; 666 fFileBits = 0;665 fFileBits = 1; 667 666 break; 668 667 … … 1066 1065 case LC_LOAD_WEAK_DYLIB: /** @todo dylib */ 1067 1066 case LC_ID_DYLINKER: /** @todo dylib */ 1067 case LC_RPATH: /** @todo dylib */ 1068 case LC_SEGMENT_SPLIT_INFO: /** @todo dylib++ */ 1069 case LC_REEXPORT_DYLIB: /** @todo dylib */ 1070 case LC_DYLD_INFO: /** @todo dylib */ 1071 case LC_DYLD_INFO_ONLY: /** @todo dylib */ 1072 case LC_LOAD_UPWARD_DYLIB: /** @todo dylib */ 1073 case LC_FUNCTION_STARTS: /** @todo dylib++ */ 1068 1074 case LC_DYLD_ENVIRONMENT: /** @todo dylib */ 1069 1075 case LC_MAIN: /** @todo parse this and find and entry point or smth. */
Note:
See TracChangeset
for help on using the changeset viewer.