On Tue, Dec 8, 2020 at 3:59 PM Gerd Hoffmann <kra...@redhat.com> wrote:
> Use active_console in that case like we do in many other places. > > Signed-off-by: Gerd Hoffmann <kra...@redhat.com> > Reviewed-by: Marc-André Lureau <marcandre.lur...@redhat.com> --- > ui/console.c | 12 ++++++++++-- > 1 file changed, 10 insertions(+), 2 deletions(-) > > diff --git a/ui/console.c b/ui/console.c > index f995639e45f6..30e70be555db 100644 > --- a/ui/console.c > +++ b/ui/console.c > @@ -1544,19 +1544,27 @@ static void dpy_set_ui_info_timer(void *opaque) > > bool dpy_ui_info_supported(QemuConsole *con) > { > + if (con == NULL) { > + con = active_console; > + } > + > return con->hw_ops->ui_info != NULL; > } > > const QemuUIInfo *dpy_get_ui_info(const QemuConsole *con) > { > - assert(con != NULL); > + if (con == NULL) { > + con = active_console; > + } > > return &con->ui_info; > } > > int dpy_set_ui_info(QemuConsole *con, QemuUIInfo *info) > { > - assert(con != NULL); > + if (con == NULL) { > + con = active_console; > + } > > if (!dpy_ui_info_supported(con)) { > return -1; > -- > 2.27.0 > > > -- Marc-André Lureau