[Spice-devel] [PATCH spice-gtk 2/2] clipboard: check that clipboard request does not belong to remote

Christophe Fergeau cfergeau at redhat.com
Thu May 15 05:49:12 PDT 2014


On Thu, May 15, 2014 at 01:12:43PM +0200, Marc-André Lureau wrote:
> From: Marc-André Lureau <marcandre.lureau at gmail.com>
> 
> Check clipboard owner, to avoid cyclic dependency of clipboard requests.
> ---
>  gtk/spice-gtk-session.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/gtk/spice-gtk-session.c b/gtk/spice-gtk-session.c
> index 5b8639c..1b05b85 100644
> --- a/gtk/spice-gtk-session.c
> +++ b/gtk/spice-gtk-session.c
> @@ -814,6 +814,9 @@ static gboolean clipboard_request(SpiceMainChannel *main, guint selection,
>      GtkClipboard* cb;
>      int m;
>  
> +    g_return_val_if_fail(s->clipboard_by_guest[selection] == FALSE, FALSE);
> +    g_return_val_if_fail(s->clip_grabbed, FALSE);

s->clip_grabbed[selection] ?

Christophe


More information about the Spice-devel mailing list