diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-12-26 16:39:20 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-12-26 16:39:20 +0100 |
commit | 1557829c6c69f481d8d5b2cfb92cfab3d3f80dd4 (patch) | |
tree | 95a386bd03f184806d6d43e98fda86c91e6d52b7 /lib/url.c | |
parent | 6b4c9b8ae0f6283ed8282d56222dd42c119a14a3 (diff) | |
download | curl-bagder/aws-macro-warning.tar.gz |
fixup more empty expressions fixedbagder/aws-macro-warning
Diffstat (limited to 'lib/url.c')
-rw-r--r-- | lib/url.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -1151,10 +1151,7 @@ ConnectionExists(struct Curl_easy *data, if(bundle->multiuse == BUNDLE_MULTIPLEX) multiplexed = CONN_INUSE(check); - if(canmultiplex) { - ; - } - else { + if(!canmultiplex) { if(multiplexed) { /* can only happen within multi handles, and means that another easy handle is using this connection */ |