Loading tests/libtest/lib1526.c +6 −3 Original line number Diff line number Diff line Loading @@ -47,7 +47,7 @@ int test(char *URL) CURL *curl = NULL; CURLcode res = CURLE_FAILED_INIT; /* http and proxy header list*/ struct curl_slist *hhl = NULL, *phl = NULL; struct curl_slist *hhl = NULL, *phl = NULL, *tmp = NULL; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); Loading @@ -62,11 +62,14 @@ int test(char *URL) hhl = curl_slist_append(hhl, "User-Agent: Http Agent"); phl = curl_slist_append(phl, "User-Agent: Proxy Agent"); phl = curl_slist_append(phl, "Expect:"); if (!hhl || !phl) { goto test_cleanup; } tmp = curl_slist_append(phl, "Expect:"); if (!tmp) { goto test_cleanup; } phl = tmp; test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_PROXY, libtest_arg2); Loading tests/libtest/lib1527.c +6 −3 Original line number Diff line number Diff line Loading @@ -48,7 +48,7 @@ int test(char *URL) CURL *curl = NULL; CURLcode res = CURLE_FAILED_INIT; /* http header list*/ struct curl_slist *hhl = NULL; struct curl_slist *hhl = NULL, *tmp = NULL; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); Loading @@ -62,11 +62,14 @@ int test(char *URL) } hhl = curl_slist_append(hhl, "User-Agent: Http Agent"); hhl = curl_slist_append(hhl, "Expect: 100-continue"); if (!hhl) { goto test_cleanup; } tmp = curl_slist_append(hhl, "Expect: 100-continue"); if (!tmp) { goto test_cleanup; } hhl = tmp; test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_PROXY, libtest_arg2); Loading Loading
tests/libtest/lib1526.c +6 −3 Original line number Diff line number Diff line Loading @@ -47,7 +47,7 @@ int test(char *URL) CURL *curl = NULL; CURLcode res = CURLE_FAILED_INIT; /* http and proxy header list*/ struct curl_slist *hhl = NULL, *phl = NULL; struct curl_slist *hhl = NULL, *phl = NULL, *tmp = NULL; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); Loading @@ -62,11 +62,14 @@ int test(char *URL) hhl = curl_slist_append(hhl, "User-Agent: Http Agent"); phl = curl_slist_append(phl, "User-Agent: Proxy Agent"); phl = curl_slist_append(phl, "Expect:"); if (!hhl || !phl) { goto test_cleanup; } tmp = curl_slist_append(phl, "Expect:"); if (!tmp) { goto test_cleanup; } phl = tmp; test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_PROXY, libtest_arg2); Loading
tests/libtest/lib1527.c +6 −3 Original line number Diff line number Diff line Loading @@ -48,7 +48,7 @@ int test(char *URL) CURL *curl = NULL; CURLcode res = CURLE_FAILED_INIT; /* http header list*/ struct curl_slist *hhl = NULL; struct curl_slist *hhl = NULL, *tmp = NULL; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); Loading @@ -62,11 +62,14 @@ int test(char *URL) } hhl = curl_slist_append(hhl, "User-Agent: Http Agent"); hhl = curl_slist_append(hhl, "Expect: 100-continue"); if (!hhl) { goto test_cleanup; } tmp = curl_slist_append(hhl, "Expect: 100-continue"); if (!tmp) { goto test_cleanup; } hhl = tmp; test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_PROXY, libtest_arg2); Loading