diff options
author | tb <> | 2022-01-14 08:16:13 +0000 |
---|---|---|
committer | tb <> | 2022-01-14 08:16:13 +0000 |
commit | 72623a3ef957eb2abae8f23270f10fce78f84123 (patch) | |
tree | 74d6c4cd010903a61c401e87224b05cd978c67e0 /src/lib/libcrypto/asn1 | |
parent | b4428794e46977d3522eb9b836c6ad7ded3031ca (diff) | |
download | openbsd-72623a3ef957eb2abae8f23270f10fce78f84123.tar.gz openbsd-72623a3ef957eb2abae8f23270f10fce78f84123.tar.bz2 openbsd-72623a3ef957eb2abae8f23270f10fce78f84123.zip |
Garbage collect the app_items field of ASN1_ADB
This is unused and was removed in OpenSSL 5b70372d when it was
replaced with an ASN.1 ADB callback (which we don't support).
ok inoguchi jsing
Diffstat (limited to 'src/lib/libcrypto/asn1')
-rw-r--r-- | src/lib/libcrypto/asn1/asn1t.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libcrypto/asn1/asn1t.h b/src/lib/libcrypto/asn1/asn1t.h index a4d0aaccbe..82369d3de2 100644 --- a/src/lib/libcrypto/asn1/asn1t.h +++ b/src/lib/libcrypto/asn1/asn1t.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: asn1t.h,v 1.17 2022/01/14 08:14:48 tb Exp $ */ | 1 | /* $OpenBSD: asn1t.h,v 1.18 2022/01/14 08:16:13 tb Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project 2000. | 3 | * project 2000. |
4 | */ | 4 | */ |
@@ -487,7 +487,6 @@ typedef struct ASN1_ADB_st ASN1_ADB; | |||
487 | struct ASN1_ADB_st { | 487 | struct ASN1_ADB_st { |
488 | unsigned long flags; /* Various flags */ | 488 | unsigned long flags; /* Various flags */ |
489 | unsigned long offset; /* Offset of selector field */ | 489 | unsigned long offset; /* Offset of selector field */ |
490 | STACK_OF(ASN1_ADB_TABLE) **app_items; /* Application defined items */ | ||
491 | const ASN1_ADB_TABLE *tbl; /* Table of possible types */ | 490 | const ASN1_ADB_TABLE *tbl; /* Table of possible types */ |
492 | long tblcount; /* Number of entries in tbl */ | 491 | long tblcount; /* Number of entries in tbl */ |
493 | const ASN1_TEMPLATE *default_tt; /* Type to use if no match */ | 492 | const ASN1_TEMPLATE *default_tt; /* Type to use if no match */ |