diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2020-09-27 18:57:48 +0400 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-09-29 10:08:25 +0200 |
commit | 5eaf1e48ff397185ec2f702f9968787d4d29e3c4 (patch) | |
tree | f97362445092488aae53b33ff0ab1c78424c708d /ui | |
parent | fd36eade0187a4efe0507b41fae22277300d1c7a (diff) |
ui: add getter for UIInfo
The following patch is going to introduce extra fields / details to
UIInfo. Add a getter and keep the current values, instead of memset(0)
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-id: 20200927145751.365446-4-marcandre.lureau@redhat.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'ui')
-rw-r--r-- | ui/console.c | 7 | ||||
-rw-r--r-- | ui/spice-display.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/ui/console.c b/ui/console.c index 7592c3c324..54a74c0b16 100644 --- a/ui/console.c +++ b/ui/console.c @@ -1516,6 +1516,13 @@ bool dpy_ui_info_supported(QemuConsole *con) return con->hw_ops->ui_info != NULL; } +const QemuUIInfo *dpy_get_ui_info(const QemuConsole *con) +{ + assert(con != NULL); + + return &con->ui_info; +} + int dpy_set_ui_info(QemuConsole *con, QemuUIInfo *info) { assert(con != NULL); diff --git a/ui/spice-display.c b/ui/spice-display.c index 19632fdf6c..625d9232b9 100644 --- a/ui/spice-display.c +++ b/ui/spice-display.c @@ -672,7 +672,7 @@ static int interface_client_monitors_config(QXLInstance *sin, return 1; } - memset(&info, 0, sizeof(info)); + info = *dpy_get_ui_info(ssd->dcl.con); if (mc->num_of_monitors == 1) { /* |