blob: 6b08fb2646f4297c505fb422baf13f028c5f5208 (
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
28
29
30
|
device: 0.916
graphic: 0.892
network: 0.839
socket: 0.814
vnc: 0.809
semantic: 0.794
PID: 0.790
performance: 0.782
files: 0.741
other: 0.729
KVM: 0.705
debug: 0.692
boot: 0.585
permissions: 0.280
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;
```
|