diff options
| author | jsing <> | 2016-12-30 15:54:49 +0000 |
|---|---|---|
| committer | jsing <> | 2016-12-30 15:54:49 +0000 |
| commit | 34bdec04311ee3fb8f658406df37d4da910d1630 (patch) | |
| tree | 853b9e5ebf0a8736f0e5ed0a4f77b796ee89ce19 /src/lib/libcrypto/x509v3/v3_skey.c | |
| parent | 19f5bc5369a8920072dcf66ff2aa6e1b7cc62b85 (diff) | |
| download | openbsd-34bdec04311ee3fb8f658406df37d4da910d1630.tar.gz openbsd-34bdec04311ee3fb8f658406df37d4da910d1630.tar.bz2 openbsd-34bdec04311ee3fb8f658406df37d4da910d1630.zip | |
Expand ASN1_ITEM_ref and ASN1_ITEM_ptr macros - no change in generated
assembly. Of particular interest is ASN1_ITEM_ptr which does nothing
and resulted in code like:
if (method->it)
ASN1_ITEM_free(..., ASN1_ITEM_ptr(method->it));
Diffstat (limited to 'src/lib/libcrypto/x509v3/v3_skey.c')
| -rw-r--r-- | src/lib/libcrypto/x509v3/v3_skey.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/x509v3/v3_skey.c b/src/lib/libcrypto/x509v3/v3_skey.c index f742b67b33..fbd66bb721 100644 --- a/src/lib/libcrypto/x509v3/v3_skey.c +++ b/src/lib/libcrypto/x509v3/v3_skey.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: v3_skey.c,v 1.13 2015/09/30 18:41:06 jsing Exp $ */ | 1 | /* $OpenBSD: v3_skey.c,v 1.14 2016/12/30 15:54:49 jsing 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 1999. | 3 | * project 1999. |
| 4 | */ | 4 | */ |
| @@ -68,7 +68,7 @@ static ASN1_OCTET_STRING *s2i_skey_id(X509V3_EXT_METHOD *method, | |||
| 68 | const X509V3_EXT_METHOD v3_skey_id = { | 68 | const X509V3_EXT_METHOD v3_skey_id = { |
| 69 | .ext_nid = NID_subject_key_identifier, | 69 | .ext_nid = NID_subject_key_identifier, |
| 70 | .ext_flags = 0, | 70 | .ext_flags = 0, |
| 71 | .it = ASN1_ITEM_ref(ASN1_OCTET_STRING), | 71 | .it = &ASN1_OCTET_STRING_it, |
| 72 | .ext_new = NULL, | 72 | .ext_new = NULL, |
| 73 | .ext_free = NULL, | 73 | .ext_free = NULL, |
| 74 | .d2i = NULL, | 74 | .d2i = NULL, |
