Merge branch 'fix(esp_tls)/dynamic_buffer_ssl_crash' into 'master'

fix(esp_tls): fix potential ssl crash with dynamic buffer

Closes IDF-14135

See merge request espressif/esp-idf!42120
This commit is contained in:
Mahavir Jain
2025-09-24 12:39:03 +05:30

View File

@@ -293,7 +293,7 @@ int esp_mbedtls_handshake(esp_tls_t *tls, const esp_tls_cfg_t *cfg)
ret = esp_mbedtls_dynamic_set_rx_buf_static(&tls->ssl); ret = esp_mbedtls_dynamic_set_rx_buf_static(&tls->ssl);
if (ret != 0) { if (ret != 0) {
ESP_LOGE(TAG, "esp_mbedtls_dynamic_set_rx_buf_static returned -0x%04X", -ret); ESP_LOGE(TAG, "esp_mbedtls_dynamic_set_rx_buf_static returned -0x%04X", -ret);
return ret; return -1;
} }
} }
#endif #endif