Merge branch 'bugfix/esp_http_client_read_v4.0' into 'release/v4.0'

Fix esp_http_client_read for file size aligned to 289 bytes (v4.0)

See merge request espressif/esp-idf!13308
This commit is contained in:
Mahavir Jain 2021-04-29 06:07:56 +00:00
commit b6b44f4b4c

View File

@ -880,7 +880,7 @@ int esp_http_client_read(esp_http_client_handle_t client, char *buffer, int len)
}
ESP_LOG_LEVEL(sev, TAG, "esp_transport_read returned:%d and errno:%d ", rlen, errno);
}
if (rlen < 0 && ridx == 0) {
if (rlen < 0 && ridx == 0 && !esp_http_client_is_complete_data_received(client)) {
return ESP_FAIL;
} else {
return ridx;