Fix BIO_free_all return type

This commit is contained in:
Eric Blankenhorn
2021-06-16 09:51:45 -05:00
parent 5bb639f6db
commit b3bfe2d12b
2 changed files with 2 additions and 3 deletions

View File

@@ -16601,7 +16601,7 @@ int wolfSSL_set_compression(WOLFSSL* ssl)
}
int wolfSSL_BIO_free_all(WOLFSSL_BIO* bio)
void wolfSSL_BIO_free_all(WOLFSSL_BIO* bio)
{
WOLFSSL_ENTER("BIO_free_all");
while (bio) {
@@ -16609,7 +16609,6 @@ int wolfSSL_set_compression(WOLFSSL* ssl)
wolfSSL_BIO_free(bio);
bio = next;
}
return 0;
}