mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-04-21 04:55:02 -05:00
Fix a valgrind error.
rsa_ssh1_fingerprint will look at the input key's comment field, which I forgot to initialise to anything, even the NULL it should be.
This commit is contained in:
parent
eb5bc31911
commit
0df6303bb5
2
ssh.c
2
ssh.c
@ -4141,6 +4141,8 @@ static void do_ssh1_login(void *vctx)
|
|||||||
get_rsa_ssh1_pub(pktin, &s->servkey, RSA_SSH1_EXPONENT_FIRST);
|
get_rsa_ssh1_pub(pktin, &s->servkey, RSA_SSH1_EXPONENT_FIRST);
|
||||||
get_rsa_ssh1_pub(pktin, &s->hostkey, RSA_SSH1_EXPONENT_FIRST);
|
get_rsa_ssh1_pub(pktin, &s->hostkey, RSA_SSH1_EXPONENT_FIRST);
|
||||||
|
|
||||||
|
s->hostkey.comment = NULL; /* avoid confusing rsa_ssh1_fingerprint */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Log the host key fingerprint.
|
* Log the host key fingerprint.
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user