From: Richard Levitte Date: Wed, 22 Feb 2017 20:06:27 +0000 (+0100) Subject: Fix typo, should be && rather than & X-Git-Tag: OpenSSL_1_0_2l~77 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6161c5d81b66f38a8a65b78379182a42a9819cc6;p=oweals%2Fopenssl.git Fix typo, should be && rather than & Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/2689) (cherry picked from commit 50799f3558981eac0482d3ea77b21c58b56d4871) --- diff --git a/crypto/ec/ec_asn1.c b/crypto/ec/ec_asn1.c index e3295c4a14..cf81841035 100644 --- a/crypto/ec/ec_asn1.c +++ b/crypto/ec/ec_asn1.c @@ -73,7 +73,7 @@ int EC_GROUP_get_basis_type(const EC_GROUP *group) /* Find the last non-zero element of group->poly[] */ for (i = 0; - i < (int)OSSL_NELEM(group->poly) & group->poly[i] != 0; + i < (int)OSSL_NELEM(group->poly) && group->poly[i] != 0; i++) continue;