From: Vadim Zeitlin Date: Fri, 2 Jan 2009 00:04:55 +0000 (+0000) Subject: don't call DoWrite() if we have nothing to send (not nothing to receive) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7ea70b6f0fe9ea63ccc22c632ecb06e4e552d2c4 don't call DoWrite() if we have nothing to send (not nothing to receive) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57720 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/sockets/baseserver.cpp b/samples/sockets/baseserver.cpp index c74ef28666..283ecb6b8e 100644 --- a/samples/sockets/baseserver.cpp +++ b/samples/sockets/baseserver.cpp @@ -688,17 +688,17 @@ void EventWorker::OnSocketEvent(wxSocketEvent& pEvent) break; case wxSOCKET_OUTPUT: - if (m_inbuf != NULL) + if ( m_outbuf ) DoWrite(); break; case wxSOCKET_CONNECTION: - LogWorker(wxString::Format("Unexpected wxSOCKET_CONNECTION in EventWorker"),wxLOG_Error); + LogWorker("Unexpected wxSOCKET_CONNECTION in EventWorker", wxLOG_Error); break; case wxSOCKET_LOST: { - LogWorker(wxString::Format("Connection lost")); + LogWorker("Connection lost"); WorkerEvent e(this); e.m_workerFailed = m_written != m_size; wxGetApp().AddPendingEvent(e);