this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[mldr] Don't Terminate If Command Size Is Greater Then PAGE_SIZE

On later versions of macOS, the command size limit is 32KiB. We don't need to worry about that in mldr.

Thomas A 29e49086 27e006e1

-5
-5
src/startup/mldr/loader.c
··· 141 141 struct load_command* lc; 142 142 143 143 lc = (struct load_command*) &cmds[p]; 144 - if (lc->cmdsize > PAGE_SIZE) 145 - { 146 - fprintf(stderr, "Broken Mach-O file, cmdsize = %d\n", lc->cmdsize); 147 - exit(1); 148 - } 149 144 150 145 switch (lc->cmd) 151 146 {