We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79b66e9 commit 3db1f6eCopy full SHA for 3db1f6e
ssh-rsa.c
@@ -67,8 +67,8 @@ ssh_rsa_cleanup(struct sshkey *k)
67
static int
68
ssh_rsa_equal(const struct sshkey *a, const struct sshkey *b)
69
{
70
- const BIGNUM *rsa_e_a, *rsa_n_a;
71
- const BIGNUM *rsa_e_b, *rsa_n_b;
+ const BIGNUM *rsa_e_a = NULL, *rsa_n_a = NULL;
+ const BIGNUM *rsa_e_b = NULL, *rsa_n_b = NULL;
72
73
if (a->rsa == NULL || b->rsa == NULL)
74
return 0;
0 commit comments