From dcea51afe9e3aec83a0c53f435beec9bc0faa07b Mon Sep 17 00:00:00 2001 From: Paul Yang Date: Mon, 4 Nov 2019 11:49:35 +0800 Subject: [PATCH] Fix no-sm2 issue Some code is not covered by the macros. Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/10319) --- apps/speed.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/speed.c b/apps/speed.c index 9d7bff0c31..7117c6f068 100644 --- a/apps/speed.c +++ b/apps/speed.c @@ -1713,10 +1713,14 @@ int speed_main(int argc, char **argv) int ecdsa_doit[ECDSA_NUM] = { 0 }; int ecdh_doit[EC_NUM] = { 0 }; int eddsa_doit[EdDSA_NUM] = { 0 }; +# ifndef OPENSSL_NO_SM2 int sm2_doit[SM2_NUM] = { 0 }; +# endif OPENSSL_assert(OSSL_NELEM(test_curves) >= EC_NUM); OPENSSL_assert(OSSL_NELEM(test_ed_curves) >= EdDSA_NUM); +# ifndef OPENSSL_NO_SM2 OPENSSL_assert(OSSL_NELEM(test_sm2_curves) >= SM2_NUM); +# endif #endif /* ndef OPENSSL_NO_EC */ prog = opt_init(argc, argv, speed_options); -- 2.25.1