mirror of
https://github.com/moparisthebest/curl
synced 2025-02-28 09:21:50 -05:00
test #598: OOM handling fixes
This commit is contained in:
parent
3c80309c27
commit
3aab542e77
@ -47,6 +47,10 @@ int test(char *URL)
|
||||
test_setopt(curl, CURLOPT_VERBOSE, 1L);
|
||||
|
||||
res = curl_easy_perform(curl);
|
||||
if(res) {
|
||||
fprintf(stderr, "retrieve 1 failed\n");
|
||||
goto test_cleanup;
|
||||
}
|
||||
|
||||
curl_easy_reset(curl);
|
||||
|
||||
@ -55,6 +59,8 @@ int test(char *URL)
|
||||
test_setopt(curl, CURLOPT_VERBOSE, 1L);
|
||||
|
||||
res = curl_easy_perform(curl);
|
||||
if(res)
|
||||
fprintf(stderr, "retrieve 2 failed\n");
|
||||
|
||||
test_cleanup:
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user