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 | 3e0943ec854b6b82022907ad29f72688a1e82c3d (patch) | |
tree | 5dc5a2c3918f8000c517ee22844c672007e729d6 /lib/libcrypto/ec | |
parent | f57081397bc47a2b355f61b7b7117613fb16e097 (diff) |
return after error instead of plowing ahead. noticed by mancha1 at zoho
Diffstat (limited to 'lib/libcrypto/ec')
-rw-r--r-- | lib/libcrypto/ec/ec_ameth.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libcrypto/ec/ec_ameth.c b/lib/libcrypto/ec/ec_ameth.c index 63319031418..79dd11083ec 100644 --- a/lib/libcrypto/ec/ec_ameth.c +++ b/lib/libcrypto/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); |