esp-tls: socket will be set to -1 and will not be closed

This commit is contained in:
Yuan Jian Min
2022-09-26 19:15:04 +08:00
committed by yuanjianmin
parent c321739074
commit 769c6c2214

View File

@@ -270,8 +270,11 @@ void esp_mbedtls_conn_delete(esp_tls_t *tls)
if (tls != NULL) {
esp_mbedtls_cleanup(tls);
if (tls->is_tls) {
mbedtls_net_free(&tls->server_fd);
tls->sockfd = tls->server_fd.fd;
if (tls->server_fd.fd != -1) {
mbedtls_net_free(&tls->server_fd);
/* Socket is already closed by `mbedtls_net_free` and hence also change assignment of its copy to an invalid value */
tls->sockfd = -1;
}
}
}
}