summaryrefslogtreecommitdiff
path: root/tests/t-rsa-15.c
diff options
context:
space:
mode:
authorNIIBE Yutaka <gniibe@fsij.org>2022-01-25 10:35:35 +0900
committerNIIBE Yutaka <gniibe@fsij.org>2022-01-25 10:35:35 +0900
commit99642f18ccbe45fb4cae55945af49f7884bcaceb (patch)
treedbb94830e0279287899ad8eefc70ced18515c036 /tests/t-rsa-15.c
parent08f3e0909f8c4fefc2c020dca206037693282186 (diff)
downloadlibgcrypt-99642f18ccbe45fb4cae55945af49f7884bcaceb.tar.gz
tests: Fix variable initialization for tests.
* tests/t-rsa-15.c (one_test_sexp): Initialize OUT_LEN. * tests/t-rsa-pss.c (one_test_sexp): Initialize CTX and OUT_LEN. Fix the if condition. -- Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
Diffstat (limited to 'tests/t-rsa-15.c')
-rw-r--r--tests/t-rsa-15.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/t-rsa-15.c b/tests/t-rsa-15.c
index 63495e9e..67dbd2cc 100644
--- a/tests/t-rsa-15.c
+++ b/tests/t-rsa-15.c
@@ -171,7 +171,7 @@ one_test_sexp (const char *n, const char *e, const char *d,
gcry_sexp_t s_sig= NULL;
gcry_sexp_t s_tmp, s_tmp2;
unsigned char *out = NULL;
- size_t out_len;
+ size_t out_len = 0;
char *sig_string = NULL;
if (verbose > 1)