From 98fbfff4177432d201eec2d9dc88408572777707 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Thu, 1 Oct 2009 00:17:59 +0000 Subject: [PATCH] PR: 2059 Submitted by: Julia Lawall Approved by: steve@openssl.org Correct EVP_SealInit error handling in pem_seal.c --- crypto/pem/pem_seal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/pem/pem_seal.c b/crypto/pem/pem_seal.c index d400c169c7..ae4598d674 100644 --- a/crypto/pem/pem_seal.c +++ b/crypto/pem/pem_seal.c @@ -101,7 +101,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