diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/htsmodules.c | 14 | ||||
-rw-r--r-- | src/htsmodules.h | 1 |
2 files changed, 0 insertions, 15 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) { diff --git a/src/htsmodules.h b/src/htsmodules.h index d793de0..35b103b 100644 --- a/src/htsmodules.h +++ b/src/htsmodules.h @@ -135,7 +135,6 @@ extern void htspe_uninit(void); extern int hts_parse_externals(htsmoduleStruct * str); /*extern int swf_is_available;*/ -extern int SSL_is_available; extern int V6_is_available; #endif |