Re: [spice-gtk] spice-option: warn on command line failures of usbredir

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

On Thu, Jul 25, 2019 at 06:32:28AM -0400, Frediano Ziglio wrote:
> > 
> > From: Victor Toso <me@xxxxxxxxxxxxxx>
> > 
> > As spice_usb_device_manager_get() can fail for different reasons, we
> > should silently ignore it and its error.

Sorry, this was a typo. I meant we should not silently ignore the
error.

> > 
> > Signed-off-by: Victor Toso <victortoso@xxxxxxxxxx>
> > ---
> >  src/spice-option.c | 18 ++++++++++++++----
> >  1 file changed, 14 insertions(+), 4 deletions(-)
> > 
> > diff --git a/src/spice-option.c b/src/spice-option.c
> > index c2b059e..c6c51a9 100644
> > --- a/src/spice-option.c
> > +++ b/src/spice-option.c
> > @@ -261,16 +261,26 @@ void spice_set_session_option(SpiceSession *session)
> >              g_object_set(session, "smartcard-db", smartcard_db, NULL);
> >      }
> >      if (usbredir_auto_redirect_filter) {
> > -        SpiceUsbDeviceManager *m = spice_usb_device_manager_get(session,
> > NULL);
> > -        if (m)
> > +        GError *err = NULL;
> > +        SpiceUsbDeviceManager *m = spice_usb_device_manager_get(session,
> > &err);
> > +        if (m) {
> >              g_object_set(m, "auto-connect-filter",
> >                           usbredir_auto_redirect_filter, NULL);
> > +        } else {
> > +            g_warning("Option --spice-usbredir-auto-redirect-filter is set
> > but failed: %s", err->message);
> > +            g_error_free(err);
> > +        }
> >      }
> >      if (usbredir_redirect_on_connect) {
> > -        SpiceUsbDeviceManager *m = spice_usb_device_manager_get(session,
> > NULL);
> > -        if (m)
> > +        GError *err = NULL;
> > +        SpiceUsbDeviceManager *m = spice_usb_device_manager_get(session,
> > &err);
> > +        if (m) {
> >              g_object_set(m, "redirect-on-connect",
> >                           usbredir_redirect_on_connect, NULL);
> > +        } else {
> > +            g_warning("Option --spice-usbredir-redirect-on-connect is set
> > but failed: %s", err->message);
> > +            g_error_free(err);
> > +        }
> >      }
> >      if (disable_usbredir)
> >          g_object_set(session, "enable-usbredir", FALSE, NULL);
> 
> g_warning to me does not mean "silently", it was more silent before.
> 
> Code looks a bit a copy&paste, maybe add a function

It is but the caller of below function still needs to check if m
is NULL or not. I don't mind, I'll change it.

Thanks,

> SpiceUsbDeviceManager *
> spice_usb_device_manager_get_for_option(SpiceSession *session, const char *option)
> {
>    GError *err = NULL;
>    SpiceUsbDeviceManager *m = spice_usb_device_manager_get(session, &err);
>    if (!m) {
>        g_warning("Option %s is set but failed: %s", option, err->message);
>        g_error_free(err);
>    }
>    return m;
> }
> 
> (I didn't check it)
> 
> Frediano

Attachment: signature.asc
Description: PGP signature

_______________________________________________
Spice-devel mailing list
Spice-devel@xxxxxxxxxxxxxxxxxxxxx
https://lists.freedesktop.org/mailman/listinfo/spice-devel

[Index of Archives]     [Linux Virtualization]     [Linux Virtualization]     [Linux ARM Kernel]     [Linux ARM]     [Linux Omap]     [Fedora ARM]     [IETF Annouce]     [Security]     [Bugtraq]     [Linux OMAP]     [Linux MIPS]     [ECOS]     [Asterisk Internet PBX]     [Linux API]     [Monitors]