summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-01-17 17:45:42 +0000
committerTomas Mraz <tomas@openssl.org>2023-02-07 17:05:10 +0100
commit7880536fe17c2b5450e279155bedd51771d28c9f (patch)
tree870d0214cc69256c19486ae6a66105cec22a0ee5 /crypto
parentadf77d6657e836fc87391fad53d857927a764297 (diff)
Fix GENERAL_NAME_cmp for x400Address (master)
CVE-2023-0286 Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/x509/v3_genn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509/v3_genn.c b/crypto/x509/v3_genn.c
index c0a7166cd0..1741c2d2f6 100644
--- a/crypto/x509/v3_genn.c
+++ b/crypto/x509/v3_genn.c
@@ -98,7 +98,7 @@ int GENERAL_NAME_cmp(GENERAL_NAME *a, GENERAL_NAME *b)
return -1;
switch (a->type) {
case GEN_X400:
- result = ASN1_TYPE_cmp(a->d.x400Address, b->d.x400Address);
+ result = ASN1_STRING_cmp(a->d.x400Address, b->d.x400Address);
break;
case GEN_EDIPARTY: