diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2010-03-30 12:52:44 -0700 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2010-03-30 12:52:44 -0700 |
commit | 8c6793d79a6604b10479630d1846fc9f56e1d525 (patch) | |
tree | 4ddcaf372362e7bc68269943dbf71cd954a8d0f5 /tests/libtest/lib560.c | |
parent | 643ae2ca8b5ae66de22f8cadc54e8625e84a4dd2 (diff) | |
download | curl-8c6793d79a6604b10479630d1846fc9f56e1d525.tar.gz |
Call curl_global_cleanup() in test 560 to avoid a memory leak
Diffstat (limited to 'tests/libtest/lib560.c')
-rw-r--r-- | tests/libtest/lib560.c | 1 |
1 files changed, 1 insertions, 0 deletions
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; } |