Fix xtext crash in rawlog/text events window

Closes #740
This commit is contained in:
TingPing 2013-09-15 10:44:55 -04:00
parent f13413c26a
commit 277732e384
1 changed files with 1 additions and 1 deletions

View File

@ -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);