mirror of
https://github.com/curl/curl.git
synced 2026-04-15 02:01:40 +03:00
https.c example: remember to call curl_global_init()
... in order not to leak memory on initializing an SSL library. Reported by: Tomas Mlcoch
This commit is contained in:
parent
9da2c96039
commit
c01b6f4d09
1 changed files with 5 additions and 0 deletions
|
|
@ -27,6 +27,8 @@ int main(void)
|
|||
CURL *curl;
|
||||
CURLcode res;
|
||||
|
||||
curl_global_init(CURL_GLOBAL_DEFAULT);
|
||||
|
||||
curl = curl_easy_init();
|
||||
if(curl) {
|
||||
curl_easy_setopt(curl, CURLOPT_URL, "https://example.com/");
|
||||
|
|
@ -65,5 +67,8 @@ int main(void)
|
|||
/* always cleanup */
|
||||
curl_easy_cleanup(curl);
|
||||
}
|
||||
|
||||
curl_global_cleanup();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue