diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2014-04-10 16:24:57 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2014-04-10 16:24:57 +0000 |
commit | eb93fb8a2e8fc76b1b929a0be870549d8eefc9b6 (patch) | |
tree | 50d10becdb7d395b7c7ddcb9a6b6847d22b2038c /src/htsmodules.c | |
parent | 6523d94ee3e7441378e5a7e28edb96d99f812a34 (diff) |
Cleanup.
Diffstat (limited to 'src/htsmodules.c')
-rw-r--r-- | src/htsmodules.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/htsmodules.c b/src/htsmodules.c index 3377a63..84763e6 100644 --- a/src/htsmodules.c +++ b/src/htsmodules.c @@ -233,11 +233,6 @@ void *getFunctionPtr(void *handle, const char *fncname_) { return NULL; } -void *ssl_handle = NULL; - -#ifdef _WIN32 -void *ssl_handle_2 = NULL; -#endif void htspe_init(void) { static int initOk = 0; @@ -278,15 +273,6 @@ void htspe_init(void) { } void htspe_uninit(void) { -#ifdef _WIN32 - CloseHandle(ssl_handle); - CloseHandle(ssl_handle_2); - ssl_handle = NULL; - ssl_handle_2 = NULL; -#else - dlclose(ssl_handle); - ssl_handle = NULL; -#endif } static void htspe_log(htsmoduleStruct * str, const char *msg) { |