Correct wrong error handler in wxDialUpManagerMSW code.

Forgot to set the success flag to false if thread creation failed.

See #15893.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75660 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2014-01-20 14:45:29 +00:00
parent 4db74850dc
commit 3637808c39

View File

@ -1149,6 +1149,8 @@ bool wxDialUpManagerMSW::EnableAutoCheckOnlineStatus(size_t nSeconds)
wxLogLastError(wxT("CreateThread(RasStatusThread)"));
CleanUpThreadData();
ok = false;
}
}