in src/main/native/org/apache/commons/crypto/cipher/OpenSslNative.c [252:259]
static void free_context_wrapper(EVP_CTX_Wrapper *wrapper) {
if (wrapper != NULL) {
if (wrapper->ctx != NULL) {
dlsym_EVP_CIPHER_CTX_free(wrapper->ctx);
}
free(wrapper);
}
}