aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2011-09-11 15:32:39 +0200
committerAndreas Schneider <asn@cryptomilk.org>2011-09-11 15:32:39 +0200
commit06e03051005ee1bd9242a0bd831be6f713416142 (patch)
tree812e2fd120d147ddf128513c89a4215c80d49803
parent3b5bdc5db440b8bf2d142631cac44c4eb052e7bc (diff)
downloadlibssh-06e03051005ee1bd9242a0bd831be6f713416142.tar.gz
libssh-06e03051005ee1bd9242a0bd831be6f713416142.tar.xz
libssh-06e03051005ee1bd9242a0bd831be6f713416142.zip
server: Fix some build warnings.
-rw-r--r--src/legacy.c2
-rw-r--r--src/server.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/legacy.c b/src/legacy.c
index 56f58370..f5954df5 100644
--- a/src/legacy.c
+++ b/src/legacy.c
@@ -472,7 +472,7 @@ void privatekey_free(ssh_private_key prv) {
ssh_string publickey_from_file(ssh_session session, const char *filename,
int *type) {
ssh_key key;
- ssh_string key_str;
+ ssh_string key_str = NULL;
int rc;
(void) session; /* unused */
diff --git a/src/server.c b/src/server.c
index 605cd174..4a2ea2cc 100644
--- a/src/server.c
+++ b/src/server.c
@@ -157,7 +157,7 @@ SSH_PACKET_CALLBACK(ssh_packet_kexdh_init){
static int dh_handshake_server(ssh_session session) {
ssh_key pubkey;
ssh_key privkey = NULL;
- ssh_string pubkey_blob;
+ ssh_string pubkey_blob = NULL;
ssh_string sig_blob;
ssh_string f;
int rc;
@@ -960,7 +960,7 @@ int ssh_message_auth_reply_pk_ok(ssh_message msg, ssh_string algo, ssh_string pu
int ssh_message_auth_reply_pk_ok_simple(ssh_message msg) {
ssh_string algo;
- ssh_string pubkey_blob;
+ ssh_string pubkey_blob = NULL;
int ret;
algo = ssh_string_from_char(msg->auth_request.pubkey->type_c);