From 592c92088c5df56db9c3a23ff46e6460279c4f4c Mon Sep 17 00:00:00 2001 From: tb Date: Thu, 12 May 2022 20:00:06 +0000 Subject: [PATCH] Small readability tweak suggested by jsing --- lib/libcrypto/x509/x509_asid.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/libcrypto/x509/x509_asid.c b/lib/libcrypto/x509/x509_asid.c index 5967e26d4d6..37c38d9b68b 100644 --- a/lib/libcrypto/x509/x509_asid.c +++ b/lib/libcrypto/x509/x509_asid.c @@ -1,4 +1,4 @@ -/* $OpenBSD: x509_asid.c,v 1.33 2022/05/12 19:56:43 tb Exp $ */ +/* $OpenBSD: x509_asid.c,v 1.34 2022/05/12 20:00:06 tb Exp $ */ /* * Contributed to the OpenSSL Project by the American Registry for * Internet Numbers ("ARIN"). @@ -918,6 +918,7 @@ asid_contains(ASIdOrRanges *parent, ASIdOrRanges *child) if (child == NULL || parent == child) return 1; + if (parent == NULL) return 0; @@ -951,6 +952,7 @@ X509v3_asid_subset(ASIdentifiers *child, ASIdentifiers *parent) { if (child == NULL || child == parent) return 1; + if (parent == NULL) return 0; -- 2.20.1