summaryrefslogtreecommitdiffstats
path: root/crypto/ec
diff options
context:
space:
mode:
authormancha <mancha1@zoho.com>2014-04-24 19:06:20 +0000
committermancha <mancha1@zoho.com>2014-04-24 19:31:49 +0000
commit3f1b3d9675aa76c9937f804c41f732082ab52216 (patch)
tree2b06b3c0ca2da61a75dde491f822f17ed5db5171 /crypto/ec
parent3e124d66c8b66a48a824387b10768411a348f518 (diff)
Fix eckey_priv_encode()
Fix eckey_priv_encode to return an error on failure of i2d_ECPrivateKey.
Diffstat (limited to 'crypto/ec')
-rw-r--r--crypto/ec/ec_ameth.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/ec/ec_ameth.c b/crypto/ec/ec_ameth.c
index f024f90497..9b4e4e01bb 100644
--- a/crypto/ec/ec_ameth.c
+++ b/crypto/ec/ec_ameth.c
@@ -356,6 +356,7 @@ static int eckey_priv_encode(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pkey)
EC_KEY_set_enc_flags(ec_key, old_flags);
OPENSSL_free(ep);
ECerr(EC_F_ECKEY_PRIV_ENCODE, ERR_R_EC_LIB);
+ return 0;
}
/* restore old encoding flags */
EC_KEY_set_enc_flags(ec_key, old_flags);