Commit 24908c12 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

polarssl: remove superfluous for(;;) loop

"unreachable: Since the loop increment is unreachable, the loop body
will never execute more than once."

Coverity CID 1291707
parent 4e299192
Loading
Loading
Loading
Loading
+18 −21
Original line number Diff line number Diff line
@@ -398,9 +398,8 @@ polarssl_connect_step2(struct connectdata *conn,
  conn->recv[sockindex] = polarssl_recv;
  conn->send[sockindex] = polarssl_send;

  for(;;) {
  if(!(ret = ssl_handshake(&connssl->ssl)))
      break;
    ;
  else if(ret != POLARSSL_ERR_NET_WANT_READ &&
          ret != POLARSSL_ERR_NET_WANT_WRITE) {
#ifdef POLARSSL_ERROR_C
@@ -422,8 +421,6 @@ polarssl_connect_step2(struct connectdata *conn,
    }
    failf(data, "SSL_connect failed with error %d.", ret);
    return CURLE_SSL_CONNECT_ERROR;

    }
  }

  infof(data, "PolarSSL: Handshake complete, cipher is %s\n",