tlsext_ecpointformatlist_length is unsigned, so check if it's less
than zero will only result in pissing of some compilers...
This commit is contained in:
parent
40f51f506c
commit
a4ff392503
1 changed files with 1 additions and 1 deletions
|
@ -632,7 +632,7 @@ int ssl_check_serverhello_tlsext(SSL *s)
|
||||||
size_t i;
|
size_t i;
|
||||||
unsigned char *list;
|
unsigned char *list;
|
||||||
int found_uncompressed = 0;
|
int found_uncompressed = 0;
|
||||||
if ((s->session->tlsext_ecpointformatlist == NULL) || (s->session->tlsext_ecpointformatlist_length <= 0))
|
if ((s->session->tlsext_ecpointformatlist == NULL) || (s->session->tlsext_ecpointformatlist_length == 0))
|
||||||
{
|
{
|
||||||
SSLerr(SSL_F_TLS1_CHECK_SERVERHELLO_TLSEXT,SSL_R_TLS_INVALID_ECPOINTFORMAT_LIST);
|
SSLerr(SSL_F_TLS1_CHECK_SERVERHELLO_TLSEXT,SSL_R_TLS_INVALID_ECPOINTFORMAT_LIST);
|
||||||
return -1;
|
return -1;
|
||||||
|
|
Loading…
Reference in a new issue