From 0d3706e2ee26d40e8a3996dcc19810635f25b3cd Mon Sep 17 00:00:00 2001 From: RichardHitt Date: Sat, 19 Jul 2014 15:51:06 -0400 Subject: [PATCH] Fix possible crash in spell check Closes #1048 --- src/fe-gtk/sexy-spell-entry.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/fe-gtk/sexy-spell-entry.c b/src/fe-gtk/sexy-spell-entry.c index c2c2a4db..119acca4 100644 --- a/src/fe-gtk/sexy-spell-entry.c +++ b/src/fe-gtk/sexy-spell-entry.c @@ -1134,10 +1134,15 @@ entry_strsplit_utf8(GtkEntry *entry, gchar ***set, gint **starts, gint **ends) gchar *start; /* Find the end of this string */ - cend = i; - while ((!log_attrs[cend].is_word_end || !log_attrs[cend].is_word_boundary) - && !log_attrs[cend].is_white) - cend++; + for (cend = i; cend < n_attrs; cend++) + { + PangoLogAttr a = log_attrs[cend]; + + if (a.is_white) + break; + if (a.is_word_end && a.is_word_boundary) + break; + } /* Copy sub-string */ start = g_utf8_offset_to_pointer(text, i);