formdata: check for EOF when reading from stdin

Reported-by: shachaf@users.noreply.github.com

Fixes #1281
This commit is contained in:
Daniel Stenberg 2017-02-23 10:41:20 +01:00
parent 035c2eceeb
commit 86f566078b

View File

@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___ * | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____| * \___|\___/|_| \_\_____|
* *
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al. * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
* *
* This software is licensed as described in the file COPYING, which * This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms * you should have received as part of this distribution. The terms
@ -1332,7 +1332,7 @@ CURLcode Curl_getformdata(struct Curl_easy *data,
char buffer[512]; char buffer[512];
while((nread = fread(buffer, 1, sizeof(buffer), fileread)) != 0) { while((nread = fread(buffer, 1, sizeof(buffer), fileread)) != 0) {
result = AddFormData(&form, FORM_CONTENT, buffer, nread, &size); result = AddFormData(&form, FORM_CONTENT, buffer, nread, &size);
if(result) if(result || feof(fileread) || ferror(fileread))
break; break;
} }
} }