Commit c15ddc61 authored by Yann Ylavic's avatar Yann Ylavic
Browse files

mod_ssl: we can't use SSL_COMP_free_compression_methods() if OPENSSL_NO_COMP

is defined.  PR 61206.

Submitted by: Michael Schlenker <msc contact.de>


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1803392 13f79535-47bb-0310-9956-ffa450edef68
parent b7e3191d
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -348,7 +348,9 @@ static apr_status_t ssl_cleanup_pre_config(void *data)
    ENGINE_cleanup();
#endif
#if OPENSSL_VERSION_NUMBER >= 0x1000200fL
#ifndef OPENSSL_NO_COMP
    SSL_COMP_free_compression_methods();
#endif
#endif

    /* Usually needed per thread, but this parent process is single-threaded */