Fix potential infinite loop when connecting HTTPClient

(cherry picked from commit de1cdc2102)
This commit is contained in:
Haoyu Qiu 2021-11-26 23:43:55 +08:00 committed by Rémi Verschelde
parent b646852765
commit 8e441d7c8b
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 1 deletions

View File

@ -337,7 +337,7 @@ Error HTTPClient::poll() {
Error err = ERR_BUG; // Should be at least one entry.
while (ip_candidates.size() > 0) {
err = tcp_connection->connect_to_host(ip_candidates.front(), conn_port);
err = tcp_connection->connect_to_host(ip_candidates.pop_front(), conn_port);
if (err == OK) {
break;
}