1
0
mirror of https://github.com/libssh2/libssh2.git synced 2025-11-21 14:00:51 +03:00

openssl.c: remove no longer used variable (#204)

after e378d2e30a
This commit is contained in:
Viktor Szakats
2017-08-21 17:49:57 -05:00
committed by GitHub
parent 6762664e7e
commit fe186fef3a

View File

@@ -344,7 +344,6 @@ aes_ctr_do_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
{ {
aes_ctr_ctx *c = EVP_CIPHER_CTX_get_app_data(ctx); aes_ctr_ctx *c = EVP_CIPHER_CTX_get_app_data(ctx);
unsigned char b1[AES_BLOCK_SIZE]; unsigned char b1[AES_BLOCK_SIZE];
size_t i = 0;
int outlen = 0; int outlen = 0;
if (inl != 16) /* libssh2 only ever encrypt one block */ if (inl != 16) /* libssh2 only ever encrypt one block */