From df5c61dbcaa53d67efc0661c89af466f1d4c8f74 Mon Sep 17 00:00:00 2001 From: Guenter Knauf Date: Thu, 11 Dec 2014 21:35:18 +0100 Subject: [PATCH] wincng.c: silent gcc compiler warnings. --- src/wincng.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wincng.c b/src/wincng.c index b575350..55c83a7 100644 --- a/src/wincng.c +++ b/src/wincng.c @@ -1276,7 +1276,7 @@ _libssh2_wincng_pub_priv_keyfile(LIBSSH2_SESSION *session, #ifdef HAVE_LIBCRYPT32 unsigned char *pbEncoded, **rpbDecoded; unsigned long cbEncoded, *rcbDecoded; - unsigned char *key, *mth; + unsigned char *key = NULL, *mth = NULL; unsigned long keylen, mthlen, index, offset, length; int ret;