From c92ac9f5cbb4440b5f87c7e0dd6bec5147d72405 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 17 Nov 2017 12:27:25 -0500 Subject: Convert the rest of src/common's headers to use FREE_AND_NULL --- src/common/aes.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/common/aes.h') diff --git a/src/common/aes.h b/src/common/aes.h index 1e400a56e0..4874f728d4 100644 --- a/src/common/aes.h +++ b/src/common/aes.h @@ -17,7 +17,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); +void aes_cipher_free_(aes_cnt_cipher_t *cipher); +#define aes_cipher_free(cipher) FREE_AND_NULL(aes_cipher, (cipher)) void aes_crypt_inplace(aes_cnt_cipher_t *cipher, char *data, size_t len); int evaluate_evp_for_aes(int force_value); -- cgit v1.2.3-54-g00ecf