From 1557829c6c69f481d8d5b2cfb92cfab3d3f80dd4 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 26 Dec 2020 16:39:20 +0100 Subject: fixup more empty expressions fixed --- lib/url.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'lib/url.c') diff --git a/lib/url.c b/lib/url.c index b998c5efb..d86d8b0b6 100644 --- a/lib/url.c +++ b/lib/url.c @@ -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 */ -- cgit v1.2.1