aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2010-11-09 20:31:01 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2010-11-10 06:33:24 +0800
commit86e6583bc7e105c7faf10a9de5a7aef6b63df0ca (patch)
tree0d881ab6c83e00be21f2d6d9124f56333ebc9aec /e-util
parente4cdc54b3a240d876304078d075cba5677c23e7e (diff)
downloadgsoc2013-evolution-86e6583bc7e105c7faf10a9de5a7aef6b63df0ca.tar
gsoc2013-evolution-86e6583bc7e105c7faf10a9de5a7aef6b63df0ca.tar.gz
gsoc2013-evolution-86e6583bc7e105c7faf10a9de5a7aef6b63df0ca.tar.bz2
gsoc2013-evolution-86e6583bc7e105c7faf10a9de5a7aef6b63df0ca.tar.lz
gsoc2013-evolution-86e6583bc7e105c7faf10a9de5a7aef6b63df0ca.tar.xz
gsoc2013-evolution-86e6583bc7e105c7faf10a9de5a7aef6b63df0ca.tar.zst
gsoc2013-evolution-86e6583bc7e105c7faf10a9de5a7aef6b63df0ca.zip
Workaround crash when pasting nothing into html message composer
Diffstat (limited to 'e-util')
-rw-r--r--e-util/e-selection.c2
1 files changed, 2 insertions, 0 deletions
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);