summary refs log tree commit diff stats
path: root/results/classifier/108/other/1119
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-05 06:55:18 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-06-05 06:55:18 +0000
commit993a7c1ea28968a4479a87ad6c2637a7045d2d51 (patch)
tree024d7266fc695c4f93ab6ce0fcd52326f3ac379d /results/classifier/108/other/1119
parent2773b5e236e2217a35a53dbc298757610c7bbbc6 (diff)
downloadqemu-analysis-993a7c1ea28968a4479a87ad6c2637a7045d2d51.tar.gz
qemu-analysis-993a7c1ea28968a4479a87ad6c2637a7045d2d51.zip
add new classifier result
Diffstat (limited to 'results/classifier/108/other/1119')
-rw-r--r--results/classifier/108/other/111930
1 files changed, 30 insertions, 0 deletions
diff --git a/results/classifier/108/other/1119 b/results/classifier/108/other/1119
new file mode 100644
index 000000000..6b08fb264
--- /dev/null
+++ b/results/classifier/108/other/1119
@@ -0,0 +1,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;
+```