From: job Date: Thu, 2 Sep 2021 21:29:35 +0000 (+0000) Subject: Repair unrolling of static ASN1_ITEM IPAddrBlocks_it X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=46b061f589ac48302813f14b5b993d5cfbdcde5d;p=openbsd Repair unrolling of static ASN1_ITEM IPAddrBlocks_it The conversion tool didn't handle 'static_ASN1_ITEM_TEMPLATE_END' OK tb@ --- 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) {