summaryrefslogtreecommitdiffstats
path: root/libssh/wrapper.c
diff options
context:
space:
mode:
Diffstat (limited to 'libssh/wrapper.c')
-rw-r--r--libssh/wrapper.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/libssh/wrapper.c b/libssh/wrapper.c
index 4e943730..a0c62444 100644
--- a/libssh/wrapper.c
+++ b/libssh/wrapper.c
@@ -466,6 +466,10 @@ static void cipher_free(struct crypto_struct *cipher){
#ifdef HAVE_LIBGCRYPT
unsigned int i;
#endif
+ if (cipher == NULL) {
+ return;
+ }
+
if(cipher->key){
#ifdef HAVE_LIBGCRYPT
for (i=0;i<cipher->keylen/sizeof (gcry_cipher_hd_t);i++)
@@ -493,6 +497,9 @@ CRYPTO *crypto_new(void) {
}
void crypto_free(CRYPTO *crypto){
+ if (crypto == NULL) {
+ return;
+ }
if(crypto->server_pubkey)
free(crypto->server_pubkey);
if(crypto->in_cipher)