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:
parent
24f0a6f13b
commit
9ecfbee08f
2
cmdgen.c
2
cmdgen.c
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user