You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation of curl states that any program making use of libcurl
is responsible for calling `curl_global_init` previous to using any
curl functions, and `curl_global_cleanup` when the program is about to
terminate. We currently call neither. While this seems to work just
fine, Valgrind may complain about unfree'd memory.
Fix the issue by correctly setting up and tearing down libcurl.
0 commit comments