Commit 9e612b55 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

make very sure that we return 'done' properly when a transfer is done, as

otherwise the multi interface gets problems
parent 203633d3
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -718,6 +718,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
              infof (data, "Follow to new URL: %s\n", conn->newurl);
              k->keepon &= ~KEEP_READ;
              FD_ZERO(&k->rkeepfd);
              *done = TRUE;
              return CURLE_OK;
            }
            else if (conn->resume_from &&
@@ -742,6 +743,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
                  if(k->timeofdoc < data->set.timevalue) {
                    infof(data,
                          "The requested document is not new enough\n");
                    *done = TRUE;
                    return CURLE_OK;
                  }
                  break;
@@ -749,6 +751,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
                  if(k->timeofdoc > data->set.timevalue) {
                    infof(data,
                          "The requested document is not old enough\n");
                    *done = TRUE;
                    return CURLE_OK;
                  }
                  break;