From 2c59bec72c1563085b7ae2548ca9589f8f0595df Mon Sep 17 00:00:00 2001 From: Joe Hamman Date: Wed, 24 May 2023 17:37:51 -0400 Subject: [PATCH] Fixed typo in comment --- src/ssl_asn1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ssl_asn1.c b/src/ssl_asn1.c index 7c8106417..d4435ed24 100644 --- a/src/ssl_asn1.c +++ b/src/ssl_asn1.c @@ -558,7 +558,7 @@ WOLFSSL_ASN1_INTEGER* wolfSSL_ASN1_INTEGER_new(void) void wolfSSL_ASN1_INTEGER_free(WOLFSSL_ASN1_INTEGER* in) { if ((in != NULL) && (in->isDynamic)) { - /* Dispose of any data allocated in BIT_STRING. */ + /* Dispose of any data allocated in INTEGER. */ XFREE(in->data, NULL, DYNAMIC_TYPE_OPENSSL); } /* Dispose of the ASN.1 INTEGER object. */