diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2023-08-02 16:25:37 -0700 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2023-08-06 16:46:13 -0700 |
| commit | 0662a626a712dde5f8a91e1b078644332336e9fa (patch) | |
| tree | 3e8cc755bf74afb10dba660195e8214774e2f343 /linux-user/flatload.c | |
| parent | 2aea137a425a87b930a33590177b04368fd7cc12 (diff) | |
| download | focaccia-qemu-0662a626a712dde5f8a91e1b078644332336e9fa.tar.gz focaccia-qemu-0662a626a712dde5f8a91e1b078644332336e9fa.zip | |
linux-user: Properly set image_info.brk in flatload
The heap starts at "brk" not "start_brk". With this fixed, image_info.start_brk is unused and may be removed. Tested-by: Helge Deller <deller@gmx.de> Reviewed-by: Helge Deller <deller@gmx.de> Reviewed-by: Akihiko Odaki <akihiko.odaki@daynix.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'linux-user/flatload.c')
| -rw-r--r-- | linux-user/flatload.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/flatload.c b/linux-user/flatload.c index 5efec2630e..8f5e9f489b 100644 --- a/linux-user/flatload.c +++ b/linux-user/flatload.c @@ -811,7 +811,7 @@ int load_flt_binary(struct linux_binprm *bprm, struct image_info *info) info->end_code = libinfo[0].start_code + libinfo[0].text_len; info->start_data = libinfo[0].start_data; info->end_data = libinfo[0].end_data; - info->start_brk = libinfo[0].start_brk; + info->brk = libinfo[0].start_brk; info->start_stack = sp; info->stack_limit = libinfo[0].start_brk; info->entry = start_addr; |