aboutsummaryrefslogtreecommitdiff
path: root/lib/multi.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-10-09 21:24:34 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-10-09 21:24:34 +0000
commit7d0c58a285b59c085904e9ee388797b3701d0161 (patch)
tree5f20f28b9c25076e141ed010fcf3d79181dd7ae7 /lib/multi.c
parent9263001b219d7df8e09abb861915fb7ca7132ab8 (diff)
when going to completed due to error, mark the handle as not in a pipeline
anymore
Diffstat (limited to 'lib/multi.c')
-rw-r--r--lib/multi.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/multi.c b/lib/multi.c
index 041209c49..b92c050de 100644
--- a/lib/multi.c
+++ b/lib/multi.c
@@ -1246,6 +1246,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
* If an error was returned, and we aren't in completed state now,
* then we go to completed and consider this transfer aborted.
*/
+ easy->easy_handle->state.is_in_pipeline = FALSE;
if(easy->easy_conn) {
/* if this has a connection, unsubscribe from the pipelines */
easy->easy_conn->writechannel_inuse = FALSE;