]> granicus.if.org Git - curl/commitdiff
curl_multi_wait: accept 0 from multi_timeout() as valid timeout
authorDaniel Stenberg <daniel@haxx.se>
Wed, 30 Oct 2013 22:48:08 +0000 (23:48 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 30 Oct 2013 22:48:08 +0000 (23:48 +0100)
The code rejected 0 as a valid timeout while in fact the function could
indeed legitimately return that and it should be respected.

Reported-by: Bjorn Stenberg
lib/multi.c

index f11ba069b998dc881a0e4e0ea1589f94958b94a0..e6c2934a6f04ebe5d73012b650513f5ecaef15e8 100644 (file)
@@ -787,9 +787,9 @@ CURLMcode curl_multi_wait(CURLM *multi_handle,
 
   /* If the internally desired timeout is actually shorter than requested from
      the outside, then use the shorter time! But only if the internal timer
-     is actually larger than 0! */
+     is actually larger than -1! */
   (void)multi_timeout(multi, &timeout_internal);
-  if((timeout_internal > 0) && (timeout_internal < (long)timeout_ms))
+  if((timeout_internal >= 0) && (timeout_internal < (long)timeout_ms))
     timeout_ms = (int)timeout_internal;
 
   /* Count up how many fds we have from the multi handle */