diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-03-01 16:16:19 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-03-06 10:19:57 +0100 |
commit | 9f71c9a0916344dccb9ed45b1c761db4bdac7edc (patch) | |
tree | 7eac2747d81131ebe0f7f6cb4e58d56d8de241ad /lib/easy.c | |
parent | 485d4470d3b9c09a14e0853c0a00099c3229cbaf (diff) | |
download | curl-bagder/version-threadsafe.tar.gz |
version: make curl_version* thread-safe without using global contextbagder/version-threadsafe
Closes #5010
Diffstat (limited to 'lib/easy.c')
-rw-r--r-- | lib/easy.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/easy.c b/lib/easy.c index 454621076..ed79ec51b 100644 --- a/lib/easy.c +++ b/lib/easy.c @@ -83,8 +83,6 @@ #include "curl_memory.h" #include "memdebug.h" -void Curl_version_init(void); - /* true globals -- for curl_global_init() and curl_global_cleanup() */ static unsigned int initialized; static long init_flags; @@ -201,8 +199,6 @@ static CURLcode global_init(long flags, bool memoryfuncs) init_flags = flags; - Curl_version_init(); - return CURLE_OK; fail: |