aboutsummaryrefslogtreecommitdiff
path: root/crypto/cryptlib.c
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:16:07 +0200
commitaf7d8d3446d640018bbeb9879ac585025b949832 (patch)
treefd5683129f64ab32f075c83cafdd92c84049124f /crypto/cryptlib.c
parent88ea3685e4bf30fc529fe46e19effc6317726de8 (diff)
downloadopenssl-af7d8d3446d640018bbeb9879ac585025b949832.zip
openssl-af7d8d3446d640018bbeb9879ac585025b949832.tar.gz
openssl-af7d8d3446d640018bbeb9879ac585025b949832.tar.bz2
minor fixes for Windows
- fix to use secure URL in generated Windows resources - fix a potentially uninitialized variable - fix an unused variable warning 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/cryptlib.c')
-rw-r--r--crypto/cryptlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c
index b1e535a..1cd77c9 100644
--- a/crypto/cryptlib.c
+++ b/crypto/cryptlib.c
@@ -204,7 +204,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");