1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

count the formdata size using a 64bit size if avaialble

This commit is contained in:
Daniel Stenberg 2004-05-07 09:50:49 +00:00
parent 535046430a
commit d67ea8c7ad

View File

@ -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;