From 9ce7fdcccd432191dc05672a849f507fdc6c6d91 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Fri, 16 Apr 2021 07:53:33 +0200 Subject: [PATCH] I#1459 - ESelectNamesEditable: Skips every second address in the list Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/1459 --- src/calendar/gui/e-select-names-editable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calendar/gui/e-select-names-editable.c b/src/calendar/gui/e-select-names-editable.c index e9152263ed..78ad223496 100644 --- a/src/calendar/gui/e-select-names-editable.c +++ b/src/calendar/gui/e-select-names-editable.c @@ -117,7 +117,7 @@ e_select_names_editable_get_emails (ESelectNamesEditable *esne) E_NAME_SELECTOR_ENTRY (esne)); list = e_destination_store_list_destinations (destination_store); - for (link = list; link != NULL; link = g_list_next (link->next)) { + for (link = list; link != NULL; link = g_list_next (link)) { EDestination *destination; destination = E_DESTINATION (link->data);