summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/openssl/openssl/crypto/ec/ec_asn1.c
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/openssl/openssl/crypto/ec/ec_asn1.c')
-rw-r--r--chromium/third_party/openssl/openssl/crypto/ec/ec_asn1.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/chromium/third_party/openssl/openssl/crypto/ec/ec_asn1.c b/chromium/third_party/openssl/openssl/crypto/ec/ec_asn1.c
index 175eec53428..e8e54489b59 100644
--- a/chromium/third_party/openssl/openssl/crypto/ec/ec_asn1.c
+++ b/chromium/third_party/openssl/openssl/crypto/ec/ec_asn1.c
@@ -1433,8 +1433,11 @@ int i2o_ECPublicKey(EC_KEY *a, unsigned char **out)
*out, buf_len, NULL))
{
ECerr(EC_F_I2O_ECPUBLICKEY, ERR_R_EC_LIB);
- OPENSSL_free(*out);
- *out = NULL;
+ if (new_buffer)
+ {
+ OPENSSL_free(*out);
+ *out = NULL;
+ }
return 0;
}
if (!new_buffer)