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 9abcc4e commit 62d64cdCopy full SHA for 62d64cd
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 = NULL, *rsa_n_a = NULL;
71
- const BIGNUM *rsa_e_b = NULL, *rsa_n_b = NULL;
+ const BIGNUM *rsa_e_a, *rsa_n_a;
+ const BIGNUM *rsa_e_b, *rsa_n_b;
72
73
if (a->rsa == NULL || b->rsa == NULL)
74
return 0;
0 commit comments