Get test 2032 working when using valgrind

If curl_multi_fdset() sets maxfd to -1, the socket detection
loop is skipped and thus !found_new_socket is no cause for alarm.
This commit is contained in:
Fabian Keil 2012-11-18 22:42:04 +01:00 committed by Kamil Dudka
parent 32be348af2
commit 52af6e69f0
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ int test(char *url)
}
if (state == NeedSocketForNewHandle) {
if(!found_new_socket) {
if(maxfd != -1 && !found_new_socket) {
fprintf(stderr, "Warning: socket did not open immediately for new "
"handle (trying again)\n");
continue;