From 572d3247c4fe2860be051549e82c680e021a7dea Mon Sep 17 00:00:00 2001 From: Carlos Garcia Campos Date: Mon, 19 Mar 2007 15:46:35 +0000 Subject: Check pointer != NULL before using it. Fixes bug #416841. 2007-03-19 Carlos Garcia Campos * shell/ev-view.c: (ev_view_primary_get_cb): Check pointer != NULL before using it. Fixes bug #416841. svn path=/trunk/; revision=2382 --- (limited to 'shell') diff --git a/shell/ev-view.c b/shell/ev-view.c index 99f0741..a7641f8 100644 --- a/shell/ev-view.c +++ b/shell/ev-view.c @@ -4743,8 +4743,10 @@ ev_view_primary_get_cb (GtkClipboard *clipboard, } text = get_selected_text (ev_view); - gtk_selection_data_set_text (selection_data, text, -1); - g_free (text); + if (text) { + gtk_selection_data_set_text (selection_data, text, -1); + g_free (text); + } } static void -- cgit v0.9.1