incremental
diff --git a/include/ssl_key_handler.hpp b/include/ssl_key_handler.hpp
index 1c3e8f4..eef4d55 100644
--- a/include/ssl_key_handler.hpp
+++ b/include/ssl_key_handler.hpp
@@ -1,4 +1,5 @@
#pragma once
+#ifdef CROW_ENABLE_SSL
#include <openssl/bio.h>
#include <openssl/dh.h>
@@ -191,7 +192,7 @@
if (myecc) {
EC_KEY_set_asn1_flag(myecc, OPENSSL_EC_NAMED_CURVE);
EC_KEY_generate_key(myecc);
- EVP_PKEY *pKey = EVP_PKEY_new();
+ pKey = EVP_PKEY_new();
if (pKey) {
if (EVP_PKEY_assign_EC_KEY(pKey, myecc)) {
/* pKey owns pRSA from now */
@@ -199,11 +200,7 @@
fprintf(stderr, "EC_check_key failed.\n");
}
}
- EVP_PKEY_free(pKey);
- pKey = NULL;
}
- EC_KEY_free(myecc);
- myecc = NULL;
}
return pKey;
}
@@ -314,4 +311,6 @@
}
return m_ssl_context;
}
-}
\ No newline at end of file
+}
+
+#endif
\ No newline at end of file