aboutsummaryrefslogtreecommitdiff
path: root/lib/http.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2015-05-12 11:47:33 +0200
committerDaniel Stenberg <daniel@haxx.se>2015-05-18 09:33:47 +0200
commitdf3a970cb40ee0cb1a390b29bf83e6759229ce32 (patch)
tree753dfd9aa99a32c8f357d9dff69b5002ee68cb88 /lib/http.c
parent193251794aa702b9156280967f19cbebaaae035d (diff)
Curl_http_readwrite_headers: minor code simplification
Diffstat (limited to 'lib/http.c')
-rw-r--r--lib/http.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/http.c b/lib/http.c
index 4966f13b1..5469cc067 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -3381,18 +3381,15 @@ CURLcode Curl_http_readwrite_headers(struct SessionHandle *data,
}
else if(conn->httpversion >= 11 &&
!conn->bits.close) {
- struct connectbundle *cb_ptr;
-
/* If HTTP version is >= 1.1 and connection is persistent
server supports pipelining. */
DEBUGF(infof(data,
"HTTP 1.1 or later with persistent connection, "
"pipelining supported\n"));
/* Activate pipelining if needed */
- cb_ptr = conn->bundle;
- if(cb_ptr) {
+ if(conn->bundle) {
if(!Curl_pipeline_site_blacklisted(data, conn))
- cb_ptr->multiuse = BUNDLE_PIPELINING;
+ conn->bundle->multiuse = BUNDLE_PIPELINING;
}
}