=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/ssh-add.c,v retrieving revision 1.31 retrieving revision 1.32 diff -u -r1.31 -r1.32 --- src/usr.bin/ssh/ssh-add.c 2001/03/26 08:07:08 1.31 +++ src/usr.bin/ssh/ssh-add.c 2001/04/08 13:03:00 1.32 @@ -35,7 +35,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-add.c,v 1.31 2001/03/26 08:07:08 markus Exp $"); +RCSID("$OpenBSD: ssh-add.c,v 1.32 2001/04/08 13:03:00 markus Exp $"); #include @@ -53,7 +53,7 @@ delete_file(AuthenticationConnection *ac, const char *filename) { Key *public; - char *comment; + char *comment = NULL; public = key_load_public(filename, &comment); if (public == NULL) { @@ -130,7 +130,7 @@ { struct stat st; Key *private; - char *comment, *askpass = NULL, *pass; + char *comment = NULL, *askpass = NULL, *pass; char buf[1024], msg[1024]; int interactive = isatty(STDIN_FILENO);