forked from espressif/esp-idf
fix(tcp_transport): Fix coverity report regarding tcp_transport
This commit is contained in:
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
* SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: Apache-2.0
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
*/
|
*/
|
||||||
@ -109,8 +109,11 @@ static int ssl_connect(esp_transport_handle_t t, const char *host, int port, int
|
|||||||
if (esp_tls_conn_new_sync(host, strlen(host), port, &ssl->cfg, ssl->tls) <= 0) {
|
if (esp_tls_conn_new_sync(host, strlen(host), port, &ssl->cfg, ssl->tls) <= 0) {
|
||||||
ESP_LOGE(TAG, "Failed to open a new connection");
|
ESP_LOGE(TAG, "Failed to open a new connection");
|
||||||
esp_tls_error_handle_t esp_tls_error_handle;
|
esp_tls_error_handle_t esp_tls_error_handle;
|
||||||
esp_tls_get_error_handle(ssl->tls, &esp_tls_error_handle);
|
if (esp_tls_get_error_handle(ssl->tls, &esp_tls_error_handle) == ESP_OK) {
|
||||||
esp_transport_set_errors(t, esp_tls_error_handle);
|
esp_transport_set_errors(t, esp_tls_error_handle);
|
||||||
|
} else {
|
||||||
|
ESP_LOGE(TAG, "Error in obtaining the error handle");
|
||||||
|
}
|
||||||
goto exit_failure;
|
goto exit_failure;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user