Fixed typo in comment

This commit is contained in:
Joe Hamman
2023-05-24 17:37:51 -04:00
parent 8bd3850e58
commit 2c59bec72c

View File

@ -558,7 +558,7 @@ WOLFSSL_ASN1_INTEGER* wolfSSL_ASN1_INTEGER_new(void)
void wolfSSL_ASN1_INTEGER_free(WOLFSSL_ASN1_INTEGER* in) void wolfSSL_ASN1_INTEGER_free(WOLFSSL_ASN1_INTEGER* in)
{ {
if ((in != NULL) && (in->isDynamic)) { 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); XFREE(in->data, NULL, DYNAMIC_TYPE_OPENSSL);
} }
/* Dispose of the ASN.1 INTEGER object. */ /* Dispose of the ASN.1 INTEGER object. */