]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
compiler warning: fix
authorYang Tse <yangsita@gmail.com>
Mon, 23 May 2011 17:37:41 +0000 (19:37 +0200)
committerYang Tse <yangsita@gmail.com>
Mon, 23 May 2011 17:37:41 +0000 (19:37 +0200)
Fix compiler warning: `keycheck' might be used uninitialized in this function.
Fix compiler warning: `keybit' might be used uninitialized in this function.

lib/ssh.c

index a26b51be4649be0cc1fc654d5d3d820e02d771d8..bc05de69d69c7d048f74a2b708526ce5f9f03ff2 100644 (file)
--- a/lib/ssh.c
+++ b/lib/ssh.c
@@ -522,8 +522,8 @@ static CURLcode ssh_knownhost(struct connectdata *conn)
     size_t keylen;
     const char *remotekey = libssh2_session_hostkey(sshc->ssh_session,
                                                     &keylen, &keytype);
-    int keycheck;
-    int keybit;
+    int keycheck = LIBSSH2_KNOWNHOST_CHECK_FAILURE;
+    int keybit = 0;
 
     if(remotekey) {
       /*