There is a wrong cast in engines/ccgost/gost_crypt.c, line 374:

        gost_destroy((gost_ctx *)ctx->cipher_data);

Must be:

        gost_destroy(&((struct ossl_gost_cipher_ctx *)ctx->cipher_data)->cctx);

Regards

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [email protected]
Automated List Manager                           [email protected]

Reply via email to