mirror of
https://github.com/espressif/esp-idf.git
synced 2026-01-19 11:45:49 +00:00
fix(esp_tls): limit ret code from esp_mbedtls_handshake
This commit is contained in:
@@ -239,7 +239,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);
|
||||
if (ret != 0) {
|
||||
ESP_LOGE(TAG, "esp_mbedtls_dynamic_set_rx_buf_static returned -0x%04X", -ret);
|
||||
return ret;
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user