examples: call curl_global_cleanup() where missing

Reported-by: Joshua Rogers (for `sepheaders.c`)

Closes #19051
This commit is contained in:
Viktor Szakats 2025-10-13 16:08:42 +02:00
parent 497b3f022e
commit 5cf0a6789d
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
8 changed files with 19 additions and 0 deletions

View file

@ -252,5 +252,7 @@ int main(int argc, char **argv)
uv_run(uv.loop, UV_RUN_DEFAULT);
curl_multi_cleanup(uv.multi);
curl_global_cleanup();
return 0;
}