Commit c1d0d2e6 authored by Richard Levitte's avatar Richard Levitte
Browse files

Fix typo, should be && rather than &



Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2689)
(cherry picked from commit 50799f35)
parent 69bb97c6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,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;