diff options
Diffstat (limited to 'addressbook/gui/component/select-names')
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names-completion.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names-completion.c b/addressbook/gui/component/select-names/e-select-names-completion.c index 403173caa8..0da1b42a50 100644 --- a/addressbook/gui/component/select-names/e-select-names-completion.c +++ b/addressbook/gui/component/select-names/e-select-names-completion.c @@ -230,9 +230,12 @@ name_style_query (ESelectNamesCompletion *comp, const gchar *field) strv = g_strsplit (cpy, " ", 0); for (i=0; strv[i]; ++i) { + gchar *old; ++count; g_strstrip (strv[i]); - strv[i] = g_strdup_printf ("(contains \"%s\" \"%s\")", field, strv[i]); + old = strv[i]; + strv[i] = g_strdup_printf ("(contains \"%s\" \"%s\")", field, old); + g_free (old); } if (count == 1) { |