From: Marc-André Lureau Date: Wed, 30 Aug 2023 09:37:58 +0000 (+0400) Subject: ui/console: update the head from unused QemuConsole X-Git-Tag: v8.2.0-rc0~142^2~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7fa4b8041b870951642515e0954d274ec4d599b1;p=thirdparty%2Fqemu.git ui/console: update the head from unused QemuConsole When recycling unused QemuConsole, we should still set the associated head number for correct information and lookups. Signed-off-by: Marc-André Lureau Reviewed-by: Daniel P. Berrangé Message-Id: <20230830093843.3531473-25-marcandre.lureau@redhat.com> --- diff --git a/ui/console.c b/ui/console.c index 08bed58b80d..a9a922b6e39 100644 --- a/ui/console.c +++ b/ui/console.c @@ -2193,10 +2193,10 @@ QemuConsole *graphic_console_init(DeviceState *dev, uint32_t head, } else { trace_console_gfx_new(); s = (QemuConsole *)object_new(TYPE_QEMU_GRAPHIC_CONSOLE); - s->head = head; s->ui_timer = timer_new_ms(QEMU_CLOCK_REALTIME, dpy_set_ui_info_timer, s); } + s->head = head; graphic_console_set_hwops(s, hw_ops, opaque); if (dev) { object_property_set_link(OBJECT(s), "device", OBJECT(dev),