[Spice-devel] [PATCH spice-gtk 06/14] win-usb: throw an error if reply.status != 0

Jonathon Jongsma jjongsma at redhat.com
Thu Apr 24 07:50:00 PDT 2014


I have no experience with usbclerk, but reading the code, it seems that reply.status is set to a boolean value[1], with true meaning success.  So the status!=0 below appears to be backward.  Or am I reading it wrong?

[1] http://cgit.freedesktop.org/spice/win32/usbclerk/tree/usbclerk.cpp#n396

----- Original Message -----
> From: "Marc-André Lureau" <marcandre.lureau at gmail.com>
> To: spice-devel at freedesktop.org
> Sent: Wednesday, April 23, 2014 1:09:11 PM
> Subject: [Spice-devel] [PATCH spice-gtk 06/14] win-usb: throw an error if	reply.status != 0
> 
> ---
>  gtk/win-usb-driver-install.c | 9 +++++++++
>  1 file changed, 9 insertions(+)
> 
> diff --git a/gtk/win-usb-driver-install.c b/gtk/win-usb-driver-install.c
> index c3a7ace..f28621f 100644
> --- a/gtk/win-usb-driver-install.c
> +++ b/gtk/win-usb-driver-install.c
> @@ -175,6 +175,15 @@ void win_usb_driver_handle_reply_cb(GObject *gobject,
>          goto failed_reply;
>      }
>  
> +    if (priv->reply.status != 0) {
> +        g_warning("usbclerk reply status %d", priv->reply.status);
> +        g_simple_async_result_set_error(priv->result,
> +                                        SPICE_WIN_USB_DRIVER_ERROR,
> +                                        SPICE_WIN_USB_DRIVER_ERROR_MESSAGE,
> +                                        "usbclerk message with error status
> %d", priv->reply.status);
> +        goto failed_reply;
> +    }
> +
>   failed_reply:
>      g_simple_async_result_complete_in_idle(priv->result);
>      g_clear_object(&priv->result);
> --
> 1.8.5.3
> 
> _______________________________________________
> Spice-devel mailing list
> Spice-devel at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/spice-devel
> 


More information about the Spice-devel mailing list