Skip to content

Commit

Permalink
Fix postlinker default bundle size on x86
Browse files Browse the repository at this point in the history
  • Loading branch information
zyedidia committed Dec 3, 2024
1 parent da8fcb8 commit 47987b7
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions lfi-postlink/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,6 @@ main(int argc, char** argv)
if (args.arch == NULL) {
args.arch = getarch();
}
if (strcmp(args.arch, "amd64") == 0 && args.bundle == 0) {
// default bundle size for x86-64
args.bundle = 16;
}

FILE* f = fopen(args.input, "r+");
if (!f) {
Expand Down

0 comments on commit 47987b7

Please sign in to comment.