diff mbox series

[API-NEXT,v3,1/4] validation: crypto: fix unitialized variable error

Message ID 1499983216-15415-2-git-send-email-odpbot@yandex.ru
State New
Headers show
Series [API-NEXT,v3,1/4] validation: crypto: fix unitialized variable error | expand

Commit Message

Github ODP bot July 13, 2017, 10 p.m. UTC
From: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org>


Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org>

---
/** Email created from pull request 74 (lumag:crypto-packet)
 ** https://github.com/Linaro/odp/pull/74
 ** Patch: https://github.com/Linaro/odp/pull/74.patch
 ** Base sha: f49ce736d461c3e8c2534ed216e8a70e8bee954e
 ** Merge commit sha: 668e2e51ec1fae14a324a67371babeeb8ecdaeda
 **/
 test/common_plat/validation/api/crypto/odp_crypto_test_inp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/test/common_plat/validation/api/crypto/odp_crypto_test_inp.c b/test/common_plat/validation/api/crypto/odp_crypto_test_inp.c
index d5549493..716bd952 100644
--- a/test/common_plat/validation/api/crypto/odp_crypto_test_inp.c
+++ b/test/common_plat/validation/api/crypto/odp_crypto_test_inp.c
@@ -303,7 +303,7 @@  static void alg_test(odp_crypto_op_t op,
 	odp_crypto_capability_t capa;
 	int rc;
 	odp_crypto_ses_create_err_t status;
-	odp_bool_t ok;
+	odp_bool_t ok = false;
 	odp_crypto_session_param_t ses_params;
 	uint8_t *data_addr;
 	odp_crypto_cipher_capability_t cipher_capa[MAX_ALG_CAPA];