mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
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>
This commit is contained in:
parent
2aea137a42
commit
0662a626a7
3 changed files with 1 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue