1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-04-09 15:18:06 -05:00

Oops. Fix a bug in my `keyfile-diagnostic' work which caused SSH-2 key loading

in pageant (and presumably puttygen) to crash.

[originally from svn r3450]
This commit is contained in:
Jacob Nevins 2003-09-10 12:30:10 +00:00
parent 95d5a91c24
commit 2cde290c77

View File

@ -835,7 +835,8 @@ struct ssh2_userkey *ssh2_load_userkey(const Filename *filename,
sfree(public_blob);
sfree(private_blob);
sfree(encryption);
*errorstr = NULL;
if (errorstr)
*errorstr = NULL;
return ret;
/*