summary refs log tree commit diff stats
path: root/gitlab/issues_text/target_missing/host_missing/accel_missing/1119
blob: 3c2c584f198bf22e651a95e12eb5007e9f8c6707 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
end_code set incorrectly
Description of problem:
https://github.com/qemu/qemu/blob/c99e34e537f13a431a80e3e414e5904e9dd0a116/linux-user/flatload.c#L811

This line says:

```
info->end_code = libinfo[0].start_code = libinfo[0].text_len;
```

but should be

```
info->end_code = libinfo[0].start_code + libinfo[0].text_len;
```