aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/common/crypto.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/crypto.c b/src/common/crypto.c
index e79666f955..dd85d14719 100644
--- a/src/common/crypto.c
+++ b/src/common/crypto.c
@@ -1055,7 +1055,7 @@ crypto_pk_public_hybrid_encrypt(crypto_pk_t *env,
memset(buf, 0, pkeylen);
tor_free(buf);
}
- if (cipher) crypto_cipher_free(cipher);
+ crypto_cipher_free(cipher);
return -1;
}
@@ -1112,7 +1112,7 @@ crypto_pk_private_hybrid_decrypt(crypto_pk_t *env,
err:
memset(buf,0,pkeylen);
tor_free(buf);
- if (cipher) crypto_cipher_free(cipher);
+ crypto_cipher_free(cipher);
return -1;
}