mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2025-05-15 09:18:27 +00:00
avoid memory leaks if linked with static openssl libs (#1857)
* New function SSLServer::update_certs. Allows to update certificates while server is running * New function SSLServer::update_certs. Added unit test * avoid memory leaks if linked with static openssl libs --------- Co-authored-by: CEU\schielke <Rainer.Schielke@heidelberg.com>
This commit is contained in:
parent
8438df4a95
commit
c1a09daf15
1 changed files with 4 additions and 0 deletions
|
@ -726,6 +726,10 @@ private:
|
||||||
assert(true == static_cast<bool>(fn));
|
assert(true == static_cast<bool>(fn));
|
||||||
fn();
|
fn();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CPPHTTPLIB_OPENSSL_SUPPORT
|
||||||
|
OPENSSL_thread_stop ();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
ThreadPool &pool_;
|
ThreadPool &pool_;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue