mirror of
https://github.com/curl/curl.git
synced 2026-08-26 22:13:31 +03:00
url: fix CURLOPT_POSTFIELDSIZE arg value check to allow -1
.. also add same arg value check to CURLOPT_POSTFIELDSIZE_LARGE.
Prior to this change since f121575 (7.56.1+) CURLOPT_POSTFIELDSIZE
erroneously rejected -1 value with CURLE_BAD_FUNCTION_ARGUMENT.
Bug: https://curl.haxx.se/mail/lib-2017-11/0000.html
Reported-by: Andrew Lambert
This commit is contained in:
parent
fa394c8c2e
commit
b8bd6dc110
1 changed files with 3 additions and 1 deletions
|
|
@ -1143,7 +1143,7 @@ CURLcode Curl_setopt(struct Curl_easy *data, CURLoption option,
|
||||||
* figure it out. Enables binary posts.
|
* figure it out. Enables binary posts.
|
||||||
*/
|
*/
|
||||||
bigsize = va_arg(param, long);
|
bigsize = va_arg(param, long);
|
||||||
if(bigsize < 0)
|
if(bigsize < -1)
|
||||||
return CURLE_BAD_FUNCTION_ARGUMENT;
|
return CURLE_BAD_FUNCTION_ARGUMENT;
|
||||||
|
|
||||||
if(data->set.postfieldsize < bigsize &&
|
if(data->set.postfieldsize < bigsize &&
|
||||||
|
|
@ -1162,6 +1162,8 @@ CURLcode Curl_setopt(struct Curl_easy *data, CURLoption option,
|
||||||
* figure it out. Enables binary posts.
|
* figure it out. Enables binary posts.
|
||||||
*/
|
*/
|
||||||
bigsize = va_arg(param, curl_off_t);
|
bigsize = va_arg(param, curl_off_t);
|
||||||
|
if(bigsize < -1)
|
||||||
|
return CURLE_BAD_FUNCTION_ARGUMENT;
|
||||||
|
|
||||||
if(data->set.postfieldsize < bigsize &&
|
if(data->set.postfieldsize < bigsize &&
|
||||||
data->set.postfields == data->set.str[STRING_COPYPOSTFIELDS]) {
|
data->set.postfields == data->set.str[STRING_COPYPOSTFIELDS]) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue