summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2019-11-01 22:18:38 +0100
committerPatrick Steuer <patrick.steuer@de.ibm.com>2019-11-03 11:19:04 +0100
commit2c99372dbdab23726327777f36e2cbc0a1af0873 (patch)
tree3a6c62c6a2f22569dbb58bf559c612054eb9409e /test
parent0f73e719c6ca6c2e955e6c08a3ab171642dc2dc0 (diff)
test/params_api_test.c: Correct the checks of OSSL_PARAM_set_BN()
Now, the returned size check matches the check made for all other integer types. Reviewed-by: Patrick Steuer <patrick.steuer@de.ibm.com> (Merged from https://github.com/openssl/openssl/pull/10326)
Diffstat (limited to 'test')
-rw-r--r--test/params_api_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/params_api_test.c b/test/params_api_test.c
index 616035ecc4..c403f39abd 100644
--- a/test/params_api_test.c
+++ b/test/params_api_test.c
@@ -548,7 +548,7 @@ static int test_param_construct(void)
if (!TEST_ptr(cp = OSSL_PARAM_locate(params, "bignum"))
|| !TEST_ptr(bn = BN_lebin2bn(bn_val, (int)sizeof(bn_val), NULL))
|| !TEST_true(OSSL_PARAM_set_BN(cp, bn))
- || !TEST_size_t_eq(cp->return_size, sizeof(bn_val)))
+ || !TEST_size_t_eq(cp->data_size, cp->return_size))
goto err;
/* Match the return size to avoid trailing garbage bytes */
cp->data_size = cp->return_size;