aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorVitaly Lavrov <vel21ripn@gmail.com>2022-03-05 13:44:21 +0300
committerGitHub <noreply@github.com>2022-03-05 11:44:21 +0100
commit438f04066bb6333dcb219205a09501ee50fdd993 (patch)
treec1d37aacd98f439e3e6b86303c117a1fdeb33472 /tests
parenta173d3e98f78a09db6df503ed853212319d29d45 (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.c1
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);