Skip to content

Commit

Permalink
fix code identation
Browse files Browse the repository at this point in the history
  • Loading branch information
wuriyanto48 committed Aug 31, 2023
1 parent 2a22ce4 commit ff878a0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions crypsi.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ff878a0

Please sign in to comment.