From 8c6793d79a6604b10479630d1846fc9f56e1d525 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Tue, 30 Mar 2010 12:52:44 -0700 Subject: [PATCH] Call curl_global_cleanup() in test 560 to avoid a memory leak --- tests/libtest/lib560.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/libtest/lib560.c b/tests/libtest/lib560.c index ce6809d39..87e854555 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; }