From ff878a0973acfae4e86da2079188b4dd4a417850 Mon Sep 17 00:00:00 2001 From: wuriyanto Date: Thu, 31 Aug 2023 11:46:16 +0700 Subject: [PATCH] fix code identation --- crypsi.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/crypsi.h b/crypsi.h index 3171097..9e33841 100644 --- a/crypsi.h +++ b/crypsi.h @@ -649,8 +649,9 @@ static int crypsi_aes_gcm_encrypt(enum crypsi_aes_key aes_key_size, const unsign return ret; } - if((dst_tmp_raw = (unsigned char*) malloc(raw_ciphertext_len)) == NULL) - return -1; + if((dst_tmp_raw = (unsigned char*) malloc(raw_ciphertext_len)) == NULL) { + return -1; + } if(!(ctx = EVP_CIPHER_CTX_new())) { goto cleanup;