From: Nils Larsch Date: Tue, 5 Apr 2005 11:16:34 +0000 (+0000) Subject: fix example in docu X-Git-Tag: OpenSSL_0_9_7g~10 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=afe01cd3f60098f164d8b35879a5987f29fda190;p=oweals%2Fopenssl.git fix example in docu PR: 800 --- diff --git a/doc/crypto/EVP_EncryptInit.pod b/doc/crypto/EVP_EncryptInit.pod index daf57e5895..40e525dd56 100644 --- a/doc/crypto/EVP_EncryptInit.pod +++ b/doc/crypto/EVP_EncryptInit.pod @@ -479,6 +479,7 @@ General encryption, decryption function example using FILE I/O and RC2 with an if(!EVP_CipherUpdate(&ctx, outbuf, &outlen, inbuf, inlen)) { /* Error */ + EVP_CIPHER_CTX_cleanup(&ctx); return 0; } fwrite(outbuf, 1, outlen, out); @@ -486,6 +487,7 @@ General encryption, decryption function example using FILE I/O and RC2 with an if(!EVP_CipherFinal_ex(&ctx, outbuf, &outlen)) { /* Error */ + EVP_CIPHER_CTX_cleanup(&ctx); return 0; } fwrite(outbuf, 1, outlen, out);