On Wed, Jan 16, 2019 at 11:44 AM Victor Toso <victort...@redhat.com> wrote:
>
> From: Victor Toso <m...@victortoso.com>
>
> Should first check selection value before accessing those arrays.
> The get_clipboard_from_selection() function does that for us.
>
> Signed-off-by: Victor Toso <victort...@redhat.com>


ack

> ---
>  src/spice-gtk-session.c | 5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/src/spice-gtk-session.c b/src/spice-gtk-session.c
> index 32f857d..1a19bca 100644
> --- a/src/spice-gtk-session.c
> +++ b/src/spice-gtk-session.c
> @@ -1014,15 +1014,14 @@ static gboolean clipboard_request(SpiceMainChannel 
> *main, guint selection,
>      GtkClipboard* cb;
>      int m;
>
> +    cb = get_clipboard_from_selection(s, selection);
> +    g_return_val_if_fail(cb != NULL, FALSE);
>      g_return_val_if_fail(s->clipboard_by_guest[selection] == FALSE, FALSE);
>      g_return_val_if_fail(s->clip_grabbed[selection], FALSE);
>
>      if (read_only(self))
>          return FALSE;
>
> -    cb = get_clipboard_from_selection(s, selection);
> -    g_return_val_if_fail(cb != NULL, FALSE);
> -
>      if (type == VD_AGENT_CLIPBOARD_UTF8_TEXT) {
>          gtk_clipboard_request_text(cb, clipboard_received_text_cb,
>                                     get_weak_ref(self));
> --
> 2.20.1
>
> _______________________________________________
> Spice-devel mailing list
> Spice-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/spice-devel



-- 
Marc-André Lureau
_______________________________________________
Spice-devel mailing list
Spice-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/spice-devel

Reply via email to