diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2017-08-26 22:01:42 +0200 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2017-08-26 22:01:42 +0200 |
commit | d7d0c9d9538df7f78b83cc91da8ec96c7d160f6a (patch) | |
tree | 8a302768da4e8b46ae08f6ff796d95c9c3a8c3c5 /tests/libtest/lib1515.c | |
parent | 09fc61e43607c4131475b0d31f41dd173d490b24 (diff) | |
download | curl-d7d0c9d9538df7f78b83cc91da8ec96c7d160f6a.tar.gz |
tests: Make sure libtests & unittests call curl_global_cleanup()
These were missed in commit c468c27b.
Diffstat (limited to 'tests/libtest/lib1515.c')
-rw-r--r-- | tests/libtest/lib1515.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/libtest/lib1515.c b/tests/libtest/lib1515.c index c1499381a..4b41dc2e4 100644 --- a/tests/libtest/lib1515.c +++ b/tests/libtest/lib1515.c @@ -148,6 +148,7 @@ int test(char *URL) test_cleanup: curl_multi_cleanup(multi); + curl_global_cleanup(); return (int) res; } |