FS-3312 --resolve

This commit is contained in:
Anthony Minessale
2011-05-25 14:45:55 -05:00
parent 5013bece3f
commit b978d39d48
4 changed files with 4 additions and 18 deletions
-7
View File
@@ -40,9 +40,6 @@ static inline void switch_curl_init(void)
if (curl_count == 0) {
curl_global_init(CURL_GLOBAL_ALL);
#if defined(HAVE_OPENSSL)
switch_ssl_init_ssl_locks();
#endif
}
curl_count++;
@@ -56,10 +53,6 @@ static inline void switch_curl_destroy()
curl_count--;
if (curl_count == 0) {
#if defined(HAVE_OPENSSL)
switch_ssl_destroy_ssl_locks();
#endif
curl_global_cleanup();
}
switch_core_curl_count(&curl_count);