diff options
author | László Várady | 2025-03-25 00:04:19 +0100 |
---|---|---|
committer | László Várady | 2025-03-25 00:04:19 +0100 |
commit | 57edd63fb55bb14b71185be940c344da686a6794 (patch) | |
tree | f6a298a2ff6334b885d834754d3082a0822591ce /qemu-8.1.1-static_regression.patch | |
download | aur-57edd63fb55bb14b71185be940c344da686a6794.tar.gz |
Initial commit
Diffstat (limited to 'qemu-8.1.1-static_regression.patch')
-rw-r--r-- | qemu-8.1.1-static_regression.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/qemu-8.1.1-static_regression.patch b/qemu-8.1.1-static_regression.patch new file mode 100644 index 000000000000..5730c92f2a66 --- /dev/null +++ b/qemu-8.1.1-static_regression.patch @@ -0,0 +1,13 @@ +diff --git a/linux-user/elfload.c b/linux-user/elfload.c +index 7c95098e3e..d52d47c5c3 100644 +--- a/linux-user/elfload.c ++++ b/linux-user/elfload.c +@@ -3327,7 +3327,7 @@ static void load_elf_image(const char *image_name, int image_fd, + info->start_data = -1; + info->end_data = 0; + /* Usual start for brk is after all sections of the main executable. */ +- info->brk = TARGET_PAGE_ALIGN(hiaddr + load_bias); ++ info->brk = TARGET_PAGE_ALIGN(hiaddr); + info->elf_flags = ehdr->e_flags; + + prot_exec = PROT_EXEC; |