[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 6/7] include/ui/rect.h: fix qemu_rect_init() mis-assignment
From: |
Michael Tokarev |
Subject: |
[PULL 6/7] include/ui/rect.h: fix qemu_rect_init() mis-assignment |
Date: |
Mon, 25 Dec 2023 11:10:06 +0300 |
From: Elen Avan <elen.avan@bk.ru>
Signed-off-by: Elen Avan <elen.avan@bk.ru>
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2051
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2050
Fixes: a200d53b1fde "virtio-gpu: replace PIXMAN for region/rect test"
Cc: qemu-stable@nongnu.org
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
---
include/ui/rect.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/ui/rect.h b/include/ui/rect.h
index 94898f92d0..68f05d78a8 100644
--- a/include/ui/rect.h
+++ b/include/ui/rect.h
@@ -19,7 +19,7 @@ static inline void qemu_rect_init(QemuRect *rect,
uint16_t width, uint16_t height)
{
rect->x = x;
- rect->y = x;
+ rect->y = y;
rect->width = width;
rect->height = height;
}
--
2.39.2
- [PULL 0/7] Trivial patches for 2023-12-25, Michael Tokarev, 2023/12/25
- [PULL 1/7] target/riscv/kvm: do not use non-portable strerrorname_np(), Michael Tokarev, 2023/12/25
- [PULL 2/7] qemu-options: Unify the help entries for cocoa, Michael Tokarev, 2023/12/25
- [PULL 5/7] accel/kvm: Turn DPRINTF macro use into tracepoints, Michael Tokarev, 2023/12/25
- [PULL 3/7] qemu-options: Tell more for -display cocoa, Michael Tokarev, 2023/12/25
- [PULL 4/7] docs/tools/qemu-img.rst: fix typo (sumarizes), Michael Tokarev, 2023/12/25
- [PULL 6/7] include/ui/rect.h: fix qemu_rect_init() mis-assignment,
Michael Tokarev <=
- [PULL 7/7] virtio-blk: Fix potential nullpointer read access in virtio_blk_data_plane_destroy, Michael Tokarev, 2023/12/25
- Re: [PULL 0/7] Trivial patches for 2023-12-25, Philippe Mathieu-Daudé, 2023/12/26
- Re: [PULL 0/7] Trivial patches for 2023-12-25, Stefan Hajnoczi, 2023/12/26