diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-06-01 21:35:14 +0200 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-06-01 21:35:14 +0200 |
| commit | 3e4c5a6261770bced301b5e74233e7866166ea5b (patch) | |
| tree | 9379fddaba693ef8a045da06efee8529baa5f6f4 /gitlab/issues_text/target_missing/host_missing/accel_missing/2466 | |
| parent | e5634e2806195bee44407853c4bf8776f7abfa4f (diff) | |
| download | qemu-analysis-3e4c5a6261770bced301b5e74233e7866166ea5b.tar.gz qemu-analysis-3e4c5a6261770bced301b5e74233e7866166ea5b.zip | |
clean up repository
Diffstat (limited to 'gitlab/issues_text/target_missing/host_missing/accel_missing/2466')
| -rw-r--r-- | gitlab/issues_text/target_missing/host_missing/accel_missing/2466 | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/gitlab/issues_text/target_missing/host_missing/accel_missing/2466 b/gitlab/issues_text/target_missing/host_missing/accel_missing/2466 deleted file mode 100644 index 75884d1d2..000000000 --- a/gitlab/issues_text/target_missing/host_missing/accel_missing/2466 +++ /dev/null @@ -1,24 +0,0 @@ -I'm not sure. But I Think I could cause the err(include/qemu/queue.h). -Description of problem: -At file "include/qemu/queue.h", Maybe I Think QTAILQ_REMOVE could cause a Error. - -``` -#define QTAILQ_REMOVE(head, elm, field) do { \ - if (((elm)->field.tqe_next) != NULL) \ - (elm)->field.tqe_next->field.tqe_circ.tql_prev = \ - (elm)->field.tqe_circ.tql_prev; \ - else \ - (head)->tqh_circ.tql_prev = (elm)->field.tqe_circ.tql_prev; \ - (elm)->field.tqe_circ.tql_prev->tql_next = (elm)->field.tqe_next; \ - (elm)->field.tqe_circ.tql_prev = NULL; \ - (elm)->field.tqe_circ.tql_next = NULL; \ - (elm)->field.tqe_next = NULL; \ -} while (/*CONSTCOND*/0) -``` -If the length of the que is one, line 7 cause a segmentation fault. -Steps to reproduce: -1. Create a Que with QTAILQ_INIT -2. Add one element to que. -3. Remove the element with QTAILQ_REMOVE -Additional information: -queue.h file is located at "inclue/qemu/queue.h" |