aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-08-28 11:28:55 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-08-28 11:28:55 +0000
commitfa162e8febe054b04130355ef3a917201820c688 (patch)
tree09fe1bc2aaa64e321be1fb91c25ade9201013ca9 /lib
parenta95df8246b352cd54777cc518a406e7ff35b2322 (diff)
CURLOPT_BUFFERSIZE must not be smaller than 0 (zero) as that is impossible
for us to deal with
Diffstat (limited to 'lib')
-rw-r--r--lib/url.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/url.c b/lib/url.c
index 3c5240b78..2b8a09794 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -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;