From 277732e384a0c51d65a835d7ff810111ca735e4a Mon Sep 17 00:00:00 2001 From: TingPing Date: Sun, 15 Sep 2013 10:44:55 -0400 Subject: [PATCH] Fix xtext crash in rawlog/text events window Closes #740 --- src/fe-gtk/xtext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fe-gtk/xtext.c b/src/fe-gtk/xtext.c index 3d2ae7ae..3850b3be 100644 --- a/src/fe-gtk/xtext.c +++ b/src/fe-gtk/xtext.c @@ -1951,7 +1951,7 @@ gtk_xtext_get_word (GtkXText * xtext, int x, int y, textentry ** ret_ent, word = gtk_xtext_strip_color (word, len, xtext->scratch_buffer, NULL, NULL, slp, FALSE); /* avoid turning the cursor into a hand for non-url part of the word */ - if (xtext->urlcheck_function (GTK_WIDGET (xtext), word)) + if (xtext->urlcheck_function && xtext->urlcheck_function (GTK_WIDGET (xtext), word)) { int start, end; url_last (&start, &end);