projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
78ca13a
)
PR: 2059
author
Dr. Stephen Henson
<steve@openssl.org>
Thu, 1 Oct 2009 00:17:59 +0000
(
00:17
+0000)
committer
Dr. Stephen Henson
<steve@openssl.org>
Thu, 1 Oct 2009 00:17:59 +0000
(
00:17
+0000)
Submitted by: Julia Lawall <julia@diku.dk>
Approved by: steve@openssl.org
Correct EVP_SealInit error handling in pem_seal.c
crypto/pem/pem_seal.c
patch
|
blob
|
history
diff --git
a/crypto/pem/pem_seal.c
b/crypto/pem/pem_seal.c
index d400c169c73cf08cb874b407b57d43b0284e5b54..ae4598d67408947c889f2d8a3806f2825eb98798 100644
(file)
--- 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<npubk; i++)