diff options
author | Darren Tucker <dtucker@zip.com.au> | 2005-08-02 09:07:07 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2005-08-02 09:07:07 +0200 |
commit | 408585391520e7131d6b2dc73b8e17211c009568 (patch) | |
tree | d20918a13983c4045561f6c2198ad9144a01ff68 /hostfile.c | |
parent | - markus@cvs.openbsd.org 2005/07/25 11:59:40 (diff) | |
download | openssh-408585391520e7131d6b2dc73b8e17211c009568.tar.xz openssh-408585391520e7131d6b2dc73b8e17211c009568.zip |
- dtucker@cvs.openbsd.org 2005/07/27 10:39:03
[scp.c hostfile.c sftp-client.c]
Silence bogus -Wuninitialized warnings; ok djm@
Diffstat (limited to 'hostfile.c')
-rw-r--r-- | hostfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hostfile.c b/hostfile.c index bf2a31c9b..63550a29d 100644 --- a/hostfile.c +++ b/hostfile.c @@ -36,7 +36,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: hostfile.c,v 1.34 2005/03/10 22:01:05 deraadt Exp $"); +RCSID("$OpenBSD: hostfile.c,v 1.35 2005/07/27 10:39:03 dtucker Exp $"); #include <resolv.h> #include <openssl/hmac.h> @@ -315,7 +315,7 @@ add_host_to_hostfile(const char *filename, const char *host, const Key *key, { FILE *f; int success = 0; - char *hashed_host; + char *hashed_host = NULL; if (key == NULL) return 1; /* XXX ? */ |