From: Daniel Stenberg Date: Mon, 9 Oct 2006 21:24:34 +0000 (+0000) Subject: when going to completed due to error, mark the handle as not in a pipeline X-Git-Tag: curl-7_16_0~115 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d0c58a285b59c085904e9ee388797b3701d0161;p=thirdparty%2Fcurl.git when going to completed due to error, mark the handle as not in a pipeline anymore --- diff --git a/lib/multi.c b/lib/multi.c index 041209c494..b92c050dee 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;