Fix possible crash in spell check

Closes #1048
This commit is contained in:
RichardHitt 2014-07-19 15:51:06 -04:00 committed by TingPing
parent 3c584e2cd5
commit 0d3706e2ee
1 changed files with 9 additions and 4 deletions

View File

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