Commit d67ea8c7 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

count the formdata size using a 64bit size if avaialble

parent 53504643
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -875,7 +875,7 @@ CURLcode Curl_getFormData(struct FormData **finalform,
  struct curl_httppost *file;
  CURLcode result = CURLE_OK;

  size_t size =0;
  curl_off_t size =0;
  char *boundary;
  char *fileboundary=NULL;
  struct curl_slist* curList;