1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-22 06:38:37 -05:00

Missing free.

This commit is contained in:
Simon Tatham 2018-06-03 08:37:17 +01:00
parent 7f56e1e365
commit 15bacbf630

View File

@ -501,6 +501,7 @@ void pageant_handle_msg(BinarySink *bs,
reqkey.comment = NULL; reqkey.comment = NULL;
fingerprint = rsa_ssh1_fingerprint(&reqkey); fingerprint = rsa_ssh1_fingerprint(&reqkey);
plog(logctx, logfn, "unwanted key: %s", fingerprint); plog(logctx, logfn, "unwanted key: %s", fingerprint);
sfree(fingerprint);
} }
key = find234(rsakeys, &reqkey, NULL); key = find234(rsakeys, &reqkey, NULL);