diff options
author | Vitaly Lavrov <vel21ripn@gmail.com> | 2022-03-05 13:44:21 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-05 11:44:21 +0100 |
commit | 438f04066bb6333dcb219205a09501ee50fdd993 (patch) | |
tree | c1d37aacd98f439e3e6b86303c117a1fdeb33472 /tests | |
parent | a173d3e98f78a09db6df503ed853212319d29d45 (diff) |
Fixed a bug for BE architectures (#1478)
Fixed a bug in the internal implementation of libgcrypt for bigendian architectures
Diffstat (limited to 'tests')
-rw-r--r-- | tests/performance/gcrypt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/performance/gcrypt.c b/tests/performance/gcrypt.c index 658cab048..febc18f1b 100644 --- a/tests/performance/gcrypt.c +++ b/tests/performance/gcrypt.c @@ -145,6 +145,7 @@ do { static void single_encryption2(void) { gcry_cipher_hd_t handle2; uint8_t de2_out[sizeof de2_src]; + gcry_error_t err; do { err = gcry_cipher_open (&handle2, GCRY_CIPHER_AES128, GCRY_CIPHER_MODE_GCM,0); |