I#1459 - ESelectNamesEditable: Skips every second address in the list

Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/1459
This commit is contained in:
Milan Crha
2021-04-16 07:53:33 +02:00
parent 7cfe4190e3
commit 9ce7fdcccd

View File

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