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

CURLOPT_BUFFERSIZE must not be smaller than 0 (zero) as that is impossible

for us to deal with
parent a95df824
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1177,7 +1177,8 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, ...)
     */
    data->set.buffer_size = va_arg(param, long);

    if(data->set.buffer_size> (BUFSIZE -1 ))
    if((data->set.buffer_size> (BUFSIZE -1 )) ||
       (data->set.buffer_size < 1))
      data->set.buffer_size = 0; /* huge internal default */

    break;