aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-11-03 16:21:36 +0100
committerRichard Levitte <levitte@openssl.org>2016-11-03 16:21:36 +0100
commit3b0478fe03191bedef44644996a5a6da51f77eaf (patch)
treeeda476f306b9253ec3958e928d720d4386698cf7 /test
parent075e9da055454ec5586962b43d9923e44bdcb313 (diff)
downloadopenssl-3b0478fe03191bedef44644996a5a6da51f77eaf.tar.gz
test/shlibloadtest: small fixes
- Make sure to initialise SHLIB variables - Make sure to make local variables static Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1838)
Diffstat (limited to 'test')
-rw-r--r--test/shlibloadtest.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/test/shlibloadtest.c b/test/shlibloadtest.c
index be1e78449e..20030d94a8 100644
--- a/test/shlibloadtest.c
+++ b/test/shlibloadtest.c
@@ -28,12 +28,12 @@ typedef void (*SSL_CTX_free_t)(SSL_CTX *);
typedef unsigned long (*ERR_get_error_t)(void);
typedef unsigned long (*OpenSSL_version_num_t)(void);
-TLS_method_t TLS_method;
-SSL_CTX_new_t SSL_CTX_new;
-SSL_CTX_free_t SSL_CTX_free;
+static TLS_method_t TLS_method;
+static SSL_CTX_new_t SSL_CTX_new;
+static SSL_CTX_free_t SSL_CTX_free;
-ERR_get_error_t ERR_get_error;
-OpenSSL_version_num_t OpenSSL_version_num;
+static ERR_get_error_t ERR_get_error;
+static OpenSSL_version_num_t OpenSSL_version_num;
#ifdef DSO_DLFCN
@@ -42,6 +42,7 @@ OpenSSL_version_num_t OpenSSL_version_num;
typedef void * SHLIB;
typedef void * SHLIB_SYM;
+# define SHLIB_INIT NULL
# define SHARED_LIBRARY_SUFFIX ".so"
@@ -87,6 +88,7 @@ static int shlib_close(SHLIB lib)
typedef HINSTANCE SHLIB;
typedef void * SHLIB_SYM;
+# define SHLIB_INIT 0
static int shlib_load(char *filename, SHLIB *lib)
{
@@ -129,7 +131,7 @@ enum test_types_en {
int main(int argc, char **argv)
{
- SHLIB ssllib, cryptolib;
+ SHLIB ssllib = SHLIB_INIT, cryptolib = SHLIB_INIT;
SSL_CTX *ctx;
union {
void (*func) (void);