Submitted by: Julia Lawall <julia@diku.dk>
Approved by: steve@openssl.org

Correct EVP_SealInit error handling in pem_seal.c
This commit is contained in:
Dr. Stephen Henson 2009-10-01 00:17:59 +00:00
parent 78ca13a272
commit 98fbfff417

View file

@ -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); EVP_CIPHER_CTX_init(&ctx->cipher);
ret=EVP_SealInit(&ctx->cipher,type,ek,ekl,iv,pubk,npubk); ret=EVP_SealInit(&ctx->cipher,type,ek,ekl,iv,pubk,npubk);
if (!ret) goto err; if (ret <= 0) goto err;
/* base64 encode the keys */ /* base64 encode the keys */
for (i=0; i<npubk; i++) for (i=0; i<npubk; i++)