Commit 44a8fced authored by Bodo Moeller's avatar Bodo Moeller
Browse files

Further improve/fix ec_GFp_simple_points_make_affine (ecp_smpl.c) and


group_order_tests (ectest.c).  Also fix the EC_POINTs_mul documentation (ec.h).

Reviewed-by: default avatar <emilia@openssl.org>

Conflicts:
	crypto/ec/ectest.c

Conflicts:
	crypto/ec/ec.h
parent 4ff07f4c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1676,7 +1676,7 @@ int ec_GFp_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT
		{
		for (i = 0; i < num; i++)
			{
			if (prod_Z[i] != NULL)
			if (prod_Z[i] == NULL) break;
			BN_clear_free(prod_Z[i]);
			}
		OPENSSL_free(prod_Z);