From 147be6f447803ebe211d6acf2ff89274b063db3d Mon Sep 17 00:00:00 2001 From: Masakazu Kitajo Date: Mon, 28 Jun 2021 17:09:29 +0900 Subject: [PATCH] Fix BoringSSL build --- iocore/net/SSLUtils.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/iocore/net/SSLUtils.cc b/iocore/net/SSLUtils.cc index 054432f12a1..35e95d20daa 100644 --- a/iocore/net/SSLUtils.cc +++ b/iocore/net/SSLUtils.cc @@ -950,6 +950,8 @@ SSLPrivateKeyHandler(SSL_CTX *ctx, const SSLConfigParams *params, const char *ke } } } +#else + void *e = nullptr; #endif if (pkey == nullptr) { scoped_BIO bio(BIO_new_mem_buf(secret_data, secret_data_len));