diff options
author | 2014-04-27 15:59:25 +0000 | |
---|---|---|
committer | 2014-04-27 15:59:25 +0000 | |
commit | 58d31b15d331ef218baa72bf12c9025f629f19d6 (patch) | |
tree | 77d2fdca52a34141d0f0849a6c7e868a0d57ed0b /lib/libssl/src/crypto | |
parent | Document net.inet6.ip6.dad_pending. (diff) | |
download | wireguard-openbsd-58d31b15d331ef218baa72bf12c9025f629f19d6.tar.xz wireguard-openbsd-58d31b15d331ef218baa72bf12c9025f629f19d6.zip |
Fix leak last commit introduced. Spotted by Sebastian Kapfer.
Diffstat (limited to 'lib/libssl/src/crypto')
-rw-r--r-- | lib/libssl/src/crypto/x509v3/v3_info.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libssl/src/crypto/x509v3/v3_info.c b/lib/libssl/src/crypto/x509v3/v3_info.c index 9ae1596b1f3..cb02160dbd7 100644 --- a/lib/libssl/src/crypto/x509v3/v3_info.c +++ b/lib/libssl/src/crypto/x509v3/v3_info.c @@ -185,6 +185,7 @@ v2i_AUTHORITY_INFO_ACCESS(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, X509V3err(X509V3_F_V2I_AUTHORITY_INFO_ACCESS, X509V3_R_BAD_OBJECT); ERR_asprintf_error_data("value=%s", objtmp); + free(objtmp); goto err; } free(objtmp); |