diff options
author | 2014-04-20 12:30:41 +0000 | |
---|---|---|
committer | 2014-04-20 12:30:41 +0000 | |
commit | 02ff4d7075e70b210b845e68fe3d82070c1a06f6 (patch) | |
tree | 66958ae83ced79c1f1a982ffdbf1c281f10671ab /lib/libssl/src | |
parent | Cleanup a bit, switch on bcopy to memcpy and move a function a bit up (diff) | |
download | wireguard-openbsd-02ff4d7075e70b210b845e68fe3d82070c1a06f6.tar.xz wireguard-openbsd-02ff4d7075e70b210b845e68fe3d82070c1a06f6.zip |
return after error instead of plowing ahead. noticed by mancha1 at zoho
Diffstat (limited to 'lib/libssl/src')
-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); |