summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorViktor Szakats <commit@vszakats.net>2018-09-11 22:34:00 +0000
committerDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>2018-09-12 09:36:05 +0200
commit477d1a6234d5f4cf5ebfe022390cf5fff42b60fa (patch)
tree07d18ac635855929c894f89b50a75a2f16da8435 /crypto
parente13dc23cc0fd64c304c25a67d5fa516a77f9e8f1 (diff)
minor fixes for Windows
- fix to use secure URL in generated Windows resources - fix a potentially uninitialized variable CLA: trivial Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/7189)
Diffstat (limited to 'crypto')
-rw-r--r--crypto/cryptlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c
index 3b878cd0c2..9e59e03ef6 100644
--- a/crypto/cryptlib.c
+++ b/crypto/cryptlib.c
@@ -198,7 +198,7 @@ int OPENSSL_isservice(void)
if (_OPENSSL_isservice.p == NULL) {
HANDLE mod = GetModuleHandle(NULL);
- FARPROC f;
+ FARPROC f = NULL;
if (mod != NULL)
f = GetProcAddress(mod, "_OPENSSL_isservice");