Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug 5390: Non-POD SquidConfig::ssl_client::sslContext exit crash #273

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Commits on Nov 17, 2024

  1. Bug 5390: Non-POD SquidConfig::ssl_client::sslContext exit crash

    Squid may crash when SquidConfig global destruction is initiated by
    exit() handlers. The problem is that when its non-POD
    ssl_client::sslContext field is destructed and and SSL_CTX_free()
    cleanup starts, some of the required SSL environment may be already
    unavailable. Now we avoid these problems by allocating
    ssl_client::sslContext dynamically and ensuring that its destructor
    never starts.
    eduard-bagdasaryan committed Nov 17, 2024
    Configuration menu
    Copy the full SHA
    e6f30ce View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2024

  1. Configuration menu
    Copy the full SHA
    03fa6e2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6d4463f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dc66a68 View commit details
    Browse the repository at this point in the history