From 4a1b71fb0c908f67ce9a517701ad64430472a0e0 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Mon, 19 Oct 2009 13:16:01 +0000 Subject: [PATCH 1/1] PR: 2070 Submitted by: Alexander Nikitovskiy Approved by: steve@openssl.org Fix wrong cast. --- engines/ccgost/gost_crypt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/ccgost/gost_crypt.c b/engines/ccgost/gost_crypt.c index 39bb696446..9c9fed5a7b 100644 --- a/engines/ccgost/gost_crypt.c +++ b/engines/ccgost/gost_crypt.c @@ -371,7 +371,7 @@ static int gost_cipher_do_cnt(EVP_CIPHER_CTX *ctx, unsigned char *out, /* Cleaning up of EVP_CIPHER_CTX */ int gost_cipher_cleanup(EVP_CIPHER_CTX *ctx) { - gost_destroy((gost_ctx *)ctx->cipher_data); + gost_destroy(&((struct ossl_gost_cipher_ctx *)ctx->cipher_data)->cctx); ctx->app_data = NULL; return 1; } -- 2.34.1