summaryrefslogtreecommitdiff
path: root/src/common/aes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/aes.h')
-rw-r--r--src/common/aes.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/aes.h b/src/common/aes.h
index 4874f728d4..c2720d29b8 100644
--- a/src/common/aes.h
+++ b/src/common/aes.h
@@ -18,7 +18,8 @@ typedef struct aes_cnt_cipher aes_cnt_cipher_t;
aes_cnt_cipher_t* aes_new_cipher(const uint8_t *key, const uint8_t *iv,
int key_bits);
void aes_cipher_free_(aes_cnt_cipher_t *cipher);
-#define aes_cipher_free(cipher) FREE_AND_NULL(aes_cipher, (cipher))
+#define aes_cipher_free(cipher) \
+ FREE_AND_NULL_UNMATCHED(aes_cnt_cipher_t, aes_cipher_free_, (cipher))
void aes_crypt_inplace(aes_cnt_cipher_t *cipher, char *data, size_t len);
int evaluate_evp_for_aes(int force_value);