polarssl: remove superfluous for(;;) loop
"unreachable: Since the loop increment is unreachable, the loop body will never execute more than once." Coverity CID 1291707
This commit is contained in:
parent
4e299192ed
commit
24908c12d7
@ -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",
|
||||
|
Loading…
x
Reference in New Issue
Block a user