summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2023-10-19 08:37:47 +0200
committerMatt Caswell <matt@openssl.org>2023-10-24 14:24:38 +0100
commit742e766f0e194d072209fe8b082278e88f62b26b (patch)
tree9bf5a07135e417c295302ba816d0a4f38e9912b0 /test
parent380ae1b3ac7052f873099dcccd9c378f64e11fc1 (diff)
Fix Coverity 1547856: memset() uses only the lowest byte of c
Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> (Merged from https://github.com/openssl/openssl/pull/22430) (cherry picked from commit 0bf18140f491024232beca4e139c8feecfe207e9)
Diffstat (limited to 'test')
-rw-r--r--test/rsa_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rsa_test.c b/test/rsa_test.c
index b2c190b2a4..e489aeaa29 100644
--- a/test/rsa_test.c
+++ b/test/rsa_test.c
@@ -484,7 +484,7 @@ static int test_EVP_rsa_legacy_key(void)
0x85, 0x20, 0x4f, 0x35, 0x02, 0xfa, 0xda, 0x14, 0x77, 0xfa, 0x08, 0x34,
0x60, 0xc7, 0x93, 0x72, 0xdc, 0xc4, 0x18, 0x70, 0xc1 };
- memset(msgbuf, 0xdeadbeef, 64);
+ memset(msgbuf, 0xef, 64);
ret = (TEST_ptr((p = BN_bin2bn(p_data, sizeof(p_data), NULL)))
&& TEST_ptr((q = BN_bin2bn(q_data, sizeof(q_data), NULL)))