From: Dr. Stephen Henson Date: Thu, 1 Oct 2009 00:18:09 +0000 (+0000) Subject: PR: 2059 X-Git-Tag: OpenSSL_0_9_8m-beta1~94 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=95d66bd8672fd3cefef4a98ba743a2c7773591e9;p=oweals%2Fopenssl.git PR: 2059 Submitted by: Julia Lawall Approved by: steve@openssl.org Correct EVP_SealInit error handling in pem_seal.c --- diff --git a/crypto/pem/pem_seal.c b/crypto/pem/pem_seal.c index 4e554e5481..59690b56ae 100644 --- a/crypto/pem/pem_seal.c +++ b/crypto/pem/pem_seal.c @@ -100,7 +100,7 @@ int PEM_SealInit(PEM_ENCODE_SEAL_CTX *ctx, EVP_CIPHER *type, EVP_MD *md_type, EVP_CIPHER_CTX_init(&ctx->cipher); ret=EVP_SealInit(&ctx->cipher,type,ek,ekl,iv,pubk,npubk); - if (!ret) goto err; + if (ret <= 0) goto err; /* base64 encode the keys */ for (i=0; i