]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix timeval struct initialization in wxSelectDispatcher.
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 9 Nov 2010 23:53:33 +0000 (23:53 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 9 Nov 2010 23:53:33 +0000 (23:53 +0000)
The tv_usec field could overflow its maximal value while tv_sec was always
left 0.

It would be even better to reuse SetTimeValFromMS() from socket.cpp here in
the future.

See #11542.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66076 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/selectdispatcher.cpp

index 7e693c54caa20fbc7f42e8242575931f42a52c60..fd0a26938cb2e328204842cee0cf00022b990afe 100644 (file)
@@ -220,8 +220,8 @@ int wxSelectDispatcher::DoSelect(wxSelectSets& sets, int timeout) const
     if ( timeout != TIMEOUT_INFINITE )
     {
         ptv = &tv;
     if ( timeout != TIMEOUT_INFINITE )
     {
         ptv = &tv;
-        tv.tv_sec = 0;
-        tv.tv_usec = timeout*1000;
+        tv.tv_sec = timeout / 1000;
+        tv.tv_usec = (timeout % 1000)*1000;
     }
     else // no timeout
     {
     }
     else // no timeout
     {