diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2014-04-20 12:30:42 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2014-04-20 12:30:42 +0000 |
commit | 117a9304af4c687aee002e014c85986d9b7272ed (patch) | |
tree | 8c432ea6ec6eb804f982008c64a6b63c6c24cd78 /lib | |
parent | e378fdcbcf6511a91d1ee9b68993c8231c381421 (diff) |
return after error instead of plowing ahead. noticed by mancha1 at zoho
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libssl/src/crypto/ec/ec_ameth.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libssl/src/crypto/ec/ec_ameth.c b/lib/libssl/src/crypto/ec/ec_ameth.c index 63319031418..79dd11083ec 100644 --- a/lib/libssl/src/crypto/ec/ec_ameth.c +++ b/lib/libssl/src/crypto/ec/ec_ameth.c @@ -352,6 +352,7 @@ static int eckey_priv_encode(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pkey) EC_KEY_set_enc_flags(ec_key, old_flags); 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); |