From 21b410545445d8465011d4b4b91f7b5fe38b3095 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 31 Jan 2005 20:03:01 +0000 Subject: somewhat nicer libcurl usage --- docs/examples/htmltitle.cc | 4 ++++ 1 file changed, 4 insertions(+) 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); -- cgit v1.2.3