mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-18 17:30:10 +00:00
gtkentrycompletion: check return value because It can be non-UTF8
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=624270
This commit is contained in:
parent
0a8043da13
commit
910ad4872c
@ -790,15 +790,19 @@ gtk_entry_completion_default_completion_func (GtkEntryCompletion *completion,
|
|||||||
if (item != NULL)
|
if (item != NULL)
|
||||||
{
|
{
|
||||||
normalized_string = g_utf8_normalize (item, -1, G_NORMALIZE_ALL);
|
normalized_string = g_utf8_normalize (item, -1, G_NORMALIZE_ALL);
|
||||||
case_normalized_string = g_utf8_casefold (normalized_string, -1);
|
|
||||||
|
if (normalized_string != NULL)
|
||||||
if (!strncmp (key, case_normalized_string, strlen (key)))
|
{
|
||||||
ret = TRUE;
|
case_normalized_string = g_utf8_casefold (normalized_string, -1);
|
||||||
|
|
||||||
g_free (item);
|
if (!strncmp (key, case_normalized_string, strlen (key)))
|
||||||
|
ret = TRUE;
|
||||||
|
|
||||||
|
g_free (case_normalized_string);
|
||||||
|
}
|
||||||
g_free (normalized_string);
|
g_free (normalized_string);
|
||||||
g_free (case_normalized_string);
|
|
||||||
}
|
}
|
||||||
|
g_free (item);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user