Skip to content

Commit 9abcc4e

Browse files
committed
Temp checkpoint.
Trying to assign nulls to values in ssh-dss.c ssh_dss_equal.
1 parent 3db1f6e commit 9abcc4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ssh-dss.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ ssh_dss_cleanup(struct sshkey *k)
7676
static int
7777
ssh_dss_equal(const struct sshkey *a, const struct sshkey *b)
7878
{
79-
const BIGNUM *dsa_p_a, *dsa_q_a, *dsa_g_a, *dsa_pub_key_a;
80-
const BIGNUM *dsa_p_b, *dsa_q_b, *dsa_g_b, *dsa_pub_key_b;
79+
const BIGNUM *dsa_p_a = NULL, *dsa_q_a = NULL, *dsa_g_a = NULL, *dsa_pub_key_a = NULL;
80+
const BIGNUM *dsa_p_b = NULL, *dsa_q_b = NULL, *dsa_g_b = NULL, *dsa_pub_key_b = NULL;
8181

8282
if (a->dsa == NULL || b->dsa == NULL)
8383
return 0;

0 commit comments

Comments
 (0)