From 80d11c3d35bfb9fa716fa08ff0259098066f225e Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Tue, 9 Nov 2010 13:31:01 +0100 Subject: Workaround crash when pasting nothing into html message composer --- e-util/e-selection.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'e-util/e-selection.c') diff --git a/e-util/e-selection.c b/e-util/e-selection.c index 3561dda636..3d8922a95a 100644 --- a/e-util/e-selection.c +++ b/e-util/e-selection.c @@ -304,6 +304,8 @@ e_selection_data_get_html (GtkSelectionData *selection_data) length = gtk_selection_data_get_length (selection_data); data_type = gtk_selection_data_get_data_type (selection_data); + g_return_val_if_fail (data != NULL, NULL); + /* First validate the data. Assume it's UTF-8 or UTF-16. */ if (g_utf8_validate ((const gchar *) data, length - 1, NULL)) utf8_text = g_strdup ((const gchar *) data); -- cgit v1.2.3