| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 90d0a1b commit 15fa779
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,4 +1,7 @@ | |||
| 1 | 1 | #include <cstdlib> | |
| 2 | + #if HAVE_OPENSSL | ||
| 3 | + #include "crypto/crypto_util.h" | ||
| 4 | + #endif // HAVE_OPENSSL | ||
| 2 | 5 | #include "env_properties.h" | |
| 3 | 6 | #include "node.h" | |
| 4 | 7 | #include "node_builtins.h" | |
@@ -1024,6 +1027,11 @@ void DefaultProcessExitHandlerInternal(Environment* env, ExitCode exit_code) { | |||
| 1024 | 1027 | // in node_v8_platform-inl.h | |
| 1025 | 1028 | uv_library_shutdown(); | |
| 1026 | 1029 | DisposePlatform(); | |
| 1030 | + | ||
| 1031 | + #if HAVE_OPENSSL | ||
| 1032 | + crypto::CleanupCachedRootCertificates(); | ||
| 1033 | + #endif // HAVE_OPENSSL | ||
| 1034 | + | ||
| 1027 | 1035 | Exit(exit_code); | |
| 1028 | 1036 | } | |
| 1029 | 1037 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments