From: Dan Fandrich Date: Tue, 30 Mar 2010 19:52:44 +0000 (-0700) Subject: Call curl_global_cleanup() in test 560 to avoid a memory leak X-Git-Tag: curl-7_20_1~32 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8c6793d79a6604b10479630d1846fc9f56e1d525;p=thirdparty%2Fcurl.git Call curl_global_cleanup() in test 560 to avoid a memory leak --- diff --git a/tests/libtest/lib560.c b/tests/libtest/lib560.c index ce6809d39c..87e8545556 100644 --- a/tests/libtest/lib560.c +++ b/tests/libtest/lib560.c @@ -99,6 +99,7 @@ test_cleanup: curl_multi_cleanup(multi_handle); curl_easy_cleanup(http_handle); + curl_global_cleanup(); return res; }