From 2e74b43c62fbd1fb73495488659045de3142b5d1 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Mon, 7 Sep 2026 13:20:55 -0400 Subject: [PATCH] MT#55283 fix compiler error Change-Id: I2c8c7e05df50d6e7ad30fb495e52dff7bb9a75a6 --- daemon/ice.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/ice.c b/daemon/ice.c index 51e4f141c..dcfd1d86c 100644 --- a/daemon/ice.c +++ b/daemon/ice.c @@ -442,7 +442,7 @@ void ice_rollback(struct ice_agent *ag, const str ufrag[2], const str pwd[2], memcpy(ag->ufrag, ufrag, sizeof(ag->ufrag)); memcpy(ag->pwd, pwd, sizeof(ag->pwd)); - for (__auto_type l = candidates->head; l; l = l->next) { + for (auto_iter(l, candidates->head); l; l = l->next) { struct ice_candidate *copy = g_new(__typeof(*copy), 1); *copy = *(struct ice_candidate *) l->data; t_hash_table_insert(ag->candidate_hash, copy, copy);