diff options
author | Yang Tse <yangsita@gmail.com> | 2006-10-10 23:50:37 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2006-10-10 23:50:37 +0000 |
commit | 8274447dd9ad74bf179973679250175f29b174e9 (patch) | |
tree | 0764838e039baa1afbe25481c225c2ebcfcce7e0 /tests/libtest/lib533.c | |
parent | 083a84e5d0fda642433df6108561cc084b306f58 (diff) | |
download | curl-8274447dd9ad74bf179973679250175f29b174e9.tar.gz |
Call curl_global_cleanup() in all code paths before exiting test
Diffstat (limited to 'tests/libtest/lib533.c')
-rw-r--r-- | tests/libtest/lib533.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/libtest/lib533.c b/tests/libtest/lib533.c index a4b6877ef..74499c232 100644 --- a/tests/libtest/lib533.c +++ b/tests/libtest/lib533.c @@ -29,8 +29,10 @@ int test(char *URL) curl_global_init(CURL_GLOBAL_ALL); curl = curl_easy_init(); - if(!curl) + if(!curl) { + curl_global_cleanup(); return 100; /* major bad */ + } curl_easy_setopt(curl, CURLOPT_URL, URL); curl_easy_setopt(curl, CURLOPT_VERBOSE, 1); |