From: Jindřich Makovička <[email protected]> gtk_clipboard_request_targets actually returns n_targets == -1 when targets == NULL instead of zero. This result in failed assertion within GTK:
qemu: Gtk: gtk_targets_include_text: assertion 'targets != NULL || n_targets == 0' failed Extend the check to require non-null targets and positive n_targets. Signed-off-by: Jindrich Makovicka <[email protected]> Reviewed-by: Marc-André Lureau <[email protected]> Message-ID: <[email protected]> --- ui/gtk-clipboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/gtk-clipboard.c b/ui/gtk-clipboard.c index 463ed4e905b..ea9444be70f 100644 --- a/ui/gtk-clipboard.c +++ b/ui/gtk-clipboard.c @@ -175,7 +175,7 @@ static void gd_clipboard_owner_change_targets_received_callback( { QemuClipboardInfo *info = (QemuClipboardInfo *)data; - if (n_targets) { + if (targets && n_targets > 0) { if (gtk_targets_include_text(targets, n_targets)) { info->types[QEMU_CLIPBOARD_TYPE_TEXT].available = true; } -- 2.54.0
