diff options
author | tb <> | 2025-08-14 19:02:17 +0000 |
---|---|---|
committer | tb <> | 2025-08-14 19:02:17 +0000 |
commit | aebc2e1e9633afc7adcdd780a2d54f9ef9c1b400 (patch) | |
tree | 8373d257c20643dba326533c6fb69fdb260ff86d /src | |
parent | acfe2a484010f8690ec05a3624ba49e9e28b9fd0 (diff) | |
download | openbsd-aebc2e1e9633afc7adcdd780a2d54f9ef9c1b400.tar.gz openbsd-aebc2e1e9633afc7adcdd780a2d54f9ef9c1b400.tar.bz2 openbsd-aebc2e1e9633afc7adcdd780a2d54f9ef9c1b400.zip |
Tweak comment in asn1_item_free: KNF, missing comma, wont -> won't.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/asn1/tasn_fre.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/libcrypto/asn1/tasn_fre.c b/src/lib/libcrypto/asn1/tasn_fre.c index 0e259a13ab..c3de668483 100644 --- a/src/lib/libcrypto/asn1/tasn_fre.c +++ b/src/lib/libcrypto/asn1/tasn_fre.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: tasn_fre.c,v 1.24 2024/12/11 11:22:06 tb Exp $ */ | 1 | /* $OpenBSD: tasn_fre.c,v 1.25 2025/08/14 19:02:17 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 | */ |
@@ -147,8 +147,9 @@ asn1_item_free(ASN1_VALUE **pval, const ASN1_ITEM *it) | |||
147 | return; | 147 | return; |
148 | } | 148 | } |
149 | asn1_enc_cleanup(pval, it); | 149 | asn1_enc_cleanup(pval, it); |
150 | /* If we free up as normal we will invalidate any | 150 | /* |
151 | * ANY DEFINED BY field and we wont be able to | 151 | * If we free up as normal, we will invalidate any |
152 | * ANY DEFINED BY field and we won't be able to | ||
152 | * determine the type of the field it defines. So | 153 | * determine the type of the field it defines. So |
153 | * free up in reverse order. | 154 | * free up in reverse order. |
154 | */ | 155 | */ |