Skip to content

Commit

Permalink
crypto: move OPENSSL_IS_BORINGSSL guard
Browse files Browse the repository at this point in the history
  • Loading branch information
codebytere committed Jun 24, 2021
1 parent b82a1a1 commit 2b56eb4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/crypto/crypto_util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ void InitCryptoOnce() {
OPENSSL_init_ssl(0, settings);
OPENSSL_INIT_free(settings);
settings = nullptr;
#endif

#ifndef _WIN32
if (per_process::cli_options->secure_heap != 0) {
Expand All @@ -158,6 +157,8 @@ void InitCryptoOnce() {
break;
}
}
#endif

#endif

// Turn off compression. Saves memory and protects against CRIME attacks.
Expand Down

0 comments on commit 2b56eb4

Please sign in to comment.