WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
17178
[curl] when using winsock, downloadTimerCallback bails
https://bugs.webkit.org/show_bug.cgi?id=17178
Summary
[curl] when using winsock, downloadTimerCallback bails
Kevin Ollivier
Reported
2008-02-04 14:44:29 PST
When building/running CURL with MSVC/winsock, we're seeing curl_multi_fdset return -1 for maxfd (which means there are no valid file descriptors), and this leads to an error when select() is called. That causes the download to bail out, meaning we can't even load pages. If we do not call select() in this case, all downloads start and complete successfully. Having this fixed is pretty critical for the wx port on Windows. Attached is a fix for the problem.
Attachments
On Win, don't call select unless we have a valid file descriptor
(1.50 KB, patch)
2008-02-04 14:45 PST
,
Kevin Ollivier
mrowe
: review-
Details
Formatted Diff
Diff
Don't call select when there are no valid file descriptors on any platform
(1.83 KB, patch)
2008-02-06 21:24 PST
,
Kevin Ollivier
eric
: review+
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Kevin Ollivier
Comment 1
2008-02-04 14:45:12 PST
Created
attachment 18919
[details]
On Win, don't call select unless we have a valid file descriptor
Mark Rowe (bdash)
Comment 2
2008-02-04 20:09:09 PST
Comment on
attachment 18919
[details]
On Win, don't call select unless we have a valid file descriptor That doesn't look right as it makes it possible for rc to be tested before being initialized. Why does it make sense to call select on non-Windows platforms when there are no file descriptors?
Kevin Ollivier
Comment 3
2008-02-06 21:24:13 PST
Created
attachment 18978
[details]
Don't call select when there are no valid file descriptors on any platform Good point, I did some more testing and not calling select() seems to work fine on Unix platforms too, so I've taken out the #if PLATFORM(WIN_OS) and I've also initialized rc to 0 so that it won't be used uninitialized.
Eric Seidel (no email)
Comment 4
2008-02-10 10:44:48 PST
Comment on
attachment 18978
[details]
Don't call select when there are no valid file descriptors on any platform Looks fine to me.
Kevin Ollivier
Comment 5
2008-02-10 11:03:24 PST
Landed in
r30121
. Thanks!
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug