[Spice-devel] [PATCH spice-server] red-qxl: Make sure we have at least one monitor

Frediano Ziglio fziglio at redhat.com
Thu Sep 19 13:24:36 UTC 2019


> 
> On Thu, Sep 19, 2019 at 11:17:25AM +0100, Frediano Ziglio wrote:
> > It does not make sense to have a graphic card without a monitor.
> > In spice_qxl_set_max_monitors we prevent to set 0 monitors, do
> > the same in spice_qxl_set_device_info.
> > 
> > This fixes https://bugzilla.redhat.com/show_bug.cgi?id=1691721.
> > 
> > Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
> 
> Acked-by: Victor Toso <victortoso at redhat.com>
> 

Can I add a 

Tested-by: Dr. David Alan Gilbert <dgilbert at redhat.com>

?


> > ---
> >  server/red-qxl.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/server/red-qxl.c b/server/red-qxl.c
> > index 03348270..dbfcd440 100644
> > --- a/server/red-qxl.c
> > +++ b/server/red-qxl.c
> > @@ -804,7 +804,7 @@ void spice_qxl_set_device_info(QXLInstance *instance,
> >      }
> >  
> >      instance->st->monitors_count = device_display_id_count;
> > -    instance->st->max_monitors = device_display_id_count;
> > +    instance->st->max_monitors = MAX(1u, device_display_id_count);
> >  
> >      reds_send_device_display_info(red_qxl_get_server(instance->st));
> >  }


More information about the Spice-devel mailing list