Skip to content

Commit c037632

Browse files
Remove extra space
1 parent 55f0e16 commit c037632

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/crypto_openssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ static int sqlcipher_openssl_cipher(void *ctx, int mode, unsigned char *key, int
234234
int tmp_csz, csz, rc = SQLITE_OK;
235235
EVP_CIPHER_CTX* ectx = EVP_CIPHER_CTX_new();
236236
if(ectx == NULL) goto error;
237-
if(!EVP_CipherInit_ex(ectx, OPENSSL_CIPHER, NULL, NULL, NULL, mode)) goto error;
237+
if(!EVP_CipherInit_ex(ectx, OPENSSL_CIPHER, NULL, NULL, NULL, mode)) goto error;
238238
if(!EVP_CIPHER_CTX_set_padding(ectx, 0)) goto error; /* no padding */
239239
if(!EVP_CipherInit_ex(ectx, NULL, NULL, key, iv, mode)) goto error;
240240
if(!EVP_CipherUpdate(ectx, out, &tmp_csz, in, in_sz)) goto error;

0 commit comments

Comments
 (0)