easy: do not ignore poll() failures other than EINTR
authorKamil Dudka <kdudka@redhat.com>
Mon, 11 Mar 2013 15:57:25 +0000 (16:57 +0100)
committerKamil Dudka <kdudka@redhat.com>
Tue, 12 Mar 2013 09:58:19 +0000 (10:58 +0100)
RELEASE-NOTES
lib/easy.c

index 3594c627adf65b0bdc604a2bdcb845e0abca033e..b41a5665526fca64b581b0989629e1984983f496 100644 (file)
@@ -53,6 +53,7 @@ This release includes the following bugfixes:
  o docs: updates HTML index and general improvements
  o curlbuild.h.dist: enhance non-configure GCC ABI detection logic
  o sasl: Fixed null pointer reference when decoding empty digest challenge [8]
+ o easy: do not ignore poll() failures other than EINTR
 
 This release includes the following known bugs:
 
index c27deffdae537195440d3a3d2ba8749391739663..2e747bb288aa9e347f58826ce49fe846201c2bce 100644 (file)
@@ -441,11 +441,19 @@ CURLcode curl_easy_perform(CURL *easy)
 
   while(!done && !mcode) {
     int still_running;
+    int ret;
 
-    mcode = curl_multi_wait(multi, NULL, 0, 1000, NULL);
+    mcode = curl_multi_wait(multi, NULL, 0, 1000, &ret);
+
+    if(mcode == CURLM_OK) {
+      if(ret == -1) {
+        /* poll() failed not on EINTR, indicate a network problem */
+        code = CURLE_RECV_ERROR;
+        break;
+      }
 
-    if(mcode == CURLM_OK)
       mcode = curl_multi_perform(multi, &still_running);
+    }
 
     /* only read 'still_running' if curl_multi_perform() return OK */
     if((mcode == CURLM_OK) && !still_running) {