From d1f1496f103788efb073830fc3a1c855d135e109 Mon Sep 17 00:00:00 2001 From: Job Snijders Date: Thu, 2 Sep 2021 21:29:36 +0000 Subject: Repair unrolling of static ASN1_ITEM IPAddrBlocks_it The conversion tool didn't handle 'static_ASN1_ITEM_TEMPLATE_END' OK tb@ --- lib/libcrypto/x509/x509_addr.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'lib') diff --git a/lib/libcrypto/x509/x509_addr.c b/lib/libcrypto/x509/x509_addr.c index 95f179174d2..d23981b0334 100644 --- a/lib/libcrypto/x509/x509_addr.c +++ b/lib/libcrypto/x509/x509_addr.c @@ -147,6 +147,17 @@ static const ASN1_TEMPLATE IPAddrBlocks_item_tt = { .item = &IPAddressFamily_it, }; +/* XXX: maybe special? */ +static const ASN1_ITEM IPAddrBlocks_it = { + .itype = ASN1_ITYPE_PRIMITIVE, + .utype = -1, + .templates = &IPAddrBlocks_item_tt, + .tcount = 0, + .funcs = NULL, + .size = 0, + .sname = "IPAddrBlocks", +}; + IPAddressRange * d2i_IPAddressRange(IPAddressRange **a, const unsigned char **in, long len) { -- cgit v1.2.3