Browse Source

Merge branch 'bugfix/esp_http_client_add_warning' into 'master'

Add error print in http_header_generate_string if buffer size

Closes IDFGH-2996

See merge request espressif/esp-idf!8265
Mahavir Jain 5 years ago
parent
commit
9d67c1548e
1 changed files with 1 additions and 0 deletions
  1. 1 0
      components/esp_http_client/lib/http_header.c

+ 1 - 0
components/esp_http_client/lib/http_header.c

@@ -191,6 +191,7 @@ int http_header_generate_string(http_header_handle_t header, int index, char *bu
         if (siz + 1 > *buffer_len - 2) {
             // if this item would not fit to the buffer, return the index of the last fitting one
             ret_idx = idx - 1;
+            ESP_LOGE(TAG, "Buffer length is small to fit all the headers");
             break;
         }
     }