On Thu, Nov 07, 2013 at 03:01:03PM +0100, Christophe Fergeau wrote: > spice_session_get_use_ca_file() returns a gboolean, but we were trying > to return NULL from g_return_val_if_fail() > --- > gtk/spice-session.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/gtk/spice-session.c b/gtk/spice-session.c > index c989f0a..60526fe 100644 > --- a/gtk/spice-session.c > +++ b/gtk/spice-session.c > @@ -2120,7 +2120,7 @@ gboolean spice_session_get_use_system_ca_file(SpiceSession *session) > { > SpiceSessionPrivate *s = SPICE_SESSION_GET_PRIVATE(session); > > - g_return_val_if_fail(s != NULL, NULL); > + g_return_val_if_fail(s != NULL, FALSE); > return s->use_system_ca_file; Never mind, this code is added in my (uncommitted) "Use system-wide trust certificate store" series, I'll squash where appropriate. Christophe
Attachment:
pgpUNS_rOvkPM.pgp
Description: PGP signature
_______________________________________________ Spice-devel mailing list Spice-devel@xxxxxxxxxxxxxxxxxxxxx http://lists.freedesktop.org/mailman/listinfo/spice-devel