Bug 651224 - Potential NULL display ptr from quartz gtk_clipboard_wait_for_contents

This commit is contained in:
John Ralls 2013-09-28 10:55:22 -07:00
parent 133a0c7426
commit 124e814f47

View File

@ -701,10 +701,12 @@ gtk_clipboard_wait_for_contents (GtkClipboard *clipboard,
GdkAtom *atoms;
length = [types count] * sizeof (GdkAtom);
selection_data = g_slice_new0 (GtkSelectionData);
selection_data->selection = clipboard->selection;
selection_data->target = target;
if (!selection_data->display)
selection_data->display = gdk_display_get_default ();
atoms = g_malloc (length);