1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 09:27:59 +00:00

Initialise some variables to NULL, to placate optimisers.

[originally from svn r9425]
This commit is contained in:
Simon Tatham 2012-03-05 18:32:27 +00:00
parent 24f0a6f13b
commit 9ecfbee08f

View File

@ -257,7 +257,7 @@ static char *blobfp(char *alg, int bits, unsigned char *blob, int bloblen)
int main(int argc, char **argv)
{
char *infile = NULL;
Filename *infilename, *outfilename;
Filename *infilename = NULL, *outfilename = NULL;
enum { NOKEYGEN, RSA1, RSA2, DSA } keytype = NOKEYGEN;
char *outfile = NULL, *outfiletmp = NULL;
enum { PRIVATE, PUBLIC, PUBLICO, FP, OPENSSH, SSHCOM } outtype = PRIVATE;