summaryrefslogtreecommitdiffstats
path: root/crypto/x509v3
diff options
context:
space:
mode:
authorIstvan Noszticzius <istvan.noszticzius@oracle.com>2014-08-15 16:43:28 +0100
committerDr. Stephen Henson <steve@openssl.org>2014-08-15 16:46:14 +0100
commitbeeb0fa7bede3f9d1552c86d81a038ae5b5fb9f9 (patch)
tree8a95978098feea71ff6bdc0a7bf394e83d29a5fa /crypto/x509v3
parent267e6f3cc0ef78dea4e5cf93907a71556a45f008 (diff)
Fix use after free bug.
Reviewed-by: Stephen Henson <steve@openssl.org> Reviewed-by: Emilia Käsper <emilia@openssl.org> (cherry picked from commit 5afa57fb7b17aa51cfba1ffa94e900fc7a5f0e04)
Diffstat (limited to 'crypto/x509v3')
-rw-r--r--crypto/x509v3/v3_utl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509v3/v3_utl.c b/crypto/x509v3/v3_utl.c
index 75efd9912a..10a7aa876a 100644
--- a/crypto/x509v3/v3_utl.c
+++ b/crypto/x509v3/v3_utl.c
@@ -879,9 +879,9 @@ static int do_check_string(ASN1_STRING *a, int cmp_type, equal_fn equal,
if (astrlen < 0)
return -1;
rv = equal(astr, astrlen, (unsigned char *)b, blen, flags);
- OPENSSL_free(astr);
if (rv > 0 && peername)
*peername = BUF_strndup((char *)astr, astrlen);
+ OPENSSL_free(astr);
}
return rv;
}