mirror of
https://github.com/openssl/openssl.git
synced 2025-04-06 20:20:50 +08:00
Coverity 1463258: Incorrect expression (EVALUATION_ORDER)
Reviewed-by: Kurt Roeckx <kurt@roeckx.be> (Merged from https://github.com/openssl/openssl/pull/11892)
This commit is contained in:
parent
e1c6f76281
commit
084b7bec0f
@ -197,7 +197,7 @@ static int print_nc_ipadd(BIO *bp, ASN1_OCTET_STRING *ip)
|
||||
int len2 = ip->length - len1;
|
||||
char *ip1 = ipaddr_to_asc(ip->data, len1);
|
||||
char *ip2 = ipaddr_to_asc(ip->data + len1, len2);
|
||||
int ret = ret = ip1 != NULL && ip2 != NULL
|
||||
int ret = ip1 != NULL && ip2 != NULL
|
||||
&& BIO_printf(bp, "IP:%s/%s", ip1, ip2) > 0;
|
||||
|
||||
OPENSSL_free(ip1);
|
||||
|
Loading…
x
Reference in New Issue
Block a user