From 8226cee8d875af8e89cfc79fd94cb430203867b4 Mon Sep 17 00:00:00 2001 From: Haoyu Qiu Date: Sat, 10 Oct 2020 10:10:30 +0800 Subject: [PATCH] Fixes HTTPClient::poll crash after connection is self-assigned --- core/io/http_client.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/io/http_client.cpp b/core/io/http_client.cpp index 46e45500bfd..a25413b21bd 100644 --- a/core/io/http_client.cpp +++ b/core/io/http_client.cpp @@ -96,6 +96,10 @@ Error HTTPClient::connect_to_host(const String &p_host, int p_port, bool p_ssl, void HTTPClient::set_connection(const Ref &p_connection) { ERR_FAIL_COND_MSG(p_connection.is_null(), "Connection is not a reference to a valid StreamPeer object."); + if (connection == p_connection) { + return; + } + close(); connection = p_connection; status = STATUS_CONNECTED;