aboutsummaryrefslogtreecommitdiff
path: root/tests/libtest/lib590.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libtest/lib590.c')
-rw-r--r--tests/libtest/lib590.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/libtest/lib590.c b/tests/libtest/lib590.c
index 7b863cc3f..cc3afdf06 100644
--- a/tests/libtest/lib590.c
+++ b/tests/libtest/lib590.c
@@ -46,7 +46,8 @@ int test(char *URL)
return TEST_ERR_MAJOR_BAD;
}
- if((curl = curl_easy_init()) == NULL) {
+ curl = curl_easy_init();
+ if(!curl) {
fprintf(stderr, "curl_easy_init() failed\n");
curl_global_cleanup();
return TEST_ERR_MAJOR_BAD;