X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fgcrypt%2Fcipher.c;h=3eed8e9570d2755ef166d05d48714fd18cc7bfed;hb=2b74e1b01af2d56d6e7ebc135143fbe81f6ca455;hp=f8668da7a922f9764f6ea4c66c16cf8c313ca9cc;hpb=87f96aec8c48327d879c20ff2b789c88a675173d;p=tinc diff --git a/src/gcrypt/cipher.c b/src/gcrypt/cipher.c index f8668da7..3eed8e95 100644 --- a/src/gcrypt/cipher.c +++ b/src/gcrypt/cipher.c @@ -102,7 +102,7 @@ static bool cipher_open(cipher_t *cipher, int algo, int mode) { } if((err = gcry_cipher_open(&cipher->handle, algo, mode, 0))) { - logger(DEBUG_ALWAYS, LOG_DEBUG, "Unable to intialise cipher %d mode %d: %s", algo, mode, gcry_strerror(err)); + logger(DEBUG_ALWAYS, LOG_DEBUG, "Unable to initialise cipher %d mode %d: %s", algo, mode, gcry_strerror(err)); return false; } @@ -146,10 +146,8 @@ void cipher_close(cipher_t *cipher) { cipher->handle = NULL; } - if(cipher->key) { - free(cipher->key); - cipher->key = NULL; - } + free(cipher->key); + cipher->key = NULL; } size_t cipher_keylength(const cipher_t *cipher) {