summary refs log tree commit diff stats
path: root/gitlab/issues/target_missing/host_missing/accel_missing/1119.toml
blob: 29e276227bab6737cd0d67feb8bcc095fb6711b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
id = 1119
title = "end_code set incorrectly"
state = "closed"
created_at = "2022-07-26T21:20:56.584Z"
closed_at = "2022-08-03T17:12:04.368Z"
labels = ["Closed::Fixed", "linux-user"]
url = "https://gitlab.com/qemu-project/qemu/-/issues/1119"
host-os = "n/a"
host-arch = "n/a"
qemu-version = "n/a"
guest-os = "n/a"
guest-arch = "n/a"
description = """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;
```"""
reproduce = "n/a"
additional = "n/a"