diff options
Diffstat (limited to 'docs/examples')
-rw-r--r-- | docs/examples/htmltitle.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/examples/htmltitle.cc b/docs/examples/htmltitle.cc index 7d0cc4c3c..9e683488f 100644 --- a/docs/examples/htmltitle.cc +++ b/docs/examples/htmltitle.cc @@ -266,6 +266,8 @@ int main(int argc, char *argv[]) exit(EXIT_FAILURE); } + curl_global_init(CURL_GLOBAL_DEFAULT); + // Initialize CURL connection if (!init(conn, argv[1])) @@ -278,6 +280,8 @@ int main(int argc, char *argv[]) // Retrieve content for the URL code = curl_easy_perform(conn); + curl_easy_cleanup(conn); + if (code != CURLE_OK) { fprintf(stderr, "Failed to get '%s' [%s]\n", argv[1], errorBuffer); |