[openssl-commits] [openssl] OpenSSL_1_1_0-stable update
Richard Levitte
levitte at openssl.org
Tue Oct 24 08:40:27 UTC 2017
The branch OpenSSL_1_1_0-stable has been updated
via 4ed22d63a7b150b2066f4fa676950786519c602b (commit)
from ca80ba81e243c30873cd11870422a3873a64be73 (commit)
- Log -----------------------------------------------------------------
commit 4ed22d63a7b150b2066f4fa676950786519c602b
Author: Xiangyu Bu <xybu at users.noreply.github.com>
Date: Tue Oct 17 17:10:53 2017 -0700
Fix memory leak in GENERAL_NAME_set0_othername.
CLA: trivial
Reviewed-by: Tim Hudson <tjh at openssl.org>
Reviewed-by: Richard Levitte <levitte at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4544)
(cherry picked from commit 04761b557a53f026630dd5916b2b8522d94579db)
-----------------------------------------------------------------------
Summary of changes:
crypto/x509v3/v3_genn.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/crypto/x509v3/v3_genn.c b/crypto/x509v3/v3_genn.c
index 8d11997..85fc3fc 100644
--- a/crypto/x509v3/v3_genn.c
+++ b/crypto/x509v3/v3_genn.c
@@ -181,6 +181,7 @@ int GENERAL_NAME_set0_othername(GENERAL_NAME *gen,
oth = OTHERNAME_new();
if (oth == NULL)
return 0;
+ ASN1_TYPE_free(oth->value);
oth->type_id = oid;
oth->value = value;
GENERAL_NAME_set0_value(gen, GEN_OTHERNAME, oth);
More information about the openssl-commits
mailing list