reapack

Package manager for REAPER
Log | Files | Refs | Submodules | README | LICENSE

commit 4b44e7334528f8d10816ab3a2f091bd7d21e9ea8
parent a70a2ac9469f9ca111fcb7b5e4bbe173a79d8b41
Author: cfillion <cfillion@users.noreply.github.com>
Date:   Sun, 21 Aug 2016 23:38:49 -0700

download: cleanup curl shared object before global data

fixes a segfault occuring only when debugging, possibly random

Diffstat:
Msrc/download.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/download.cpp b/src/download.cpp @@ -62,8 +62,8 @@ void Download::Init() void Download::Cleanup() { - curl_global_cleanup(); curl_share_cleanup(g_curlShare); + curl_global_cleanup(); } Download::Download(const string &name, const string &url,