[Ipstream-devel] IPSocket/lib/interfaces ip_server.h,1.15,1.16
Status: Beta
Brought to you by:
kontramot
|
From: Sergey V. B. <kon...@us...> - 2010-03-19 07:29:47
|
Update of /cvsroot/ipstream/IPSocket/lib/interfaces In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv12586/lib/interfaces Modified Files: ip_server.h Log Message: minor reformating Index: ip_server.h =================================================================== RCS file: /cvsroot/ipstream/IPSocket/lib/interfaces/ip_server.h,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ip_server.h 9 Aug 2006 15:32:58 -0000 1.15 --- ip_server.h 19 Mar 2010 07:29:39 -0000 1.16 *************** *** 171,176 **** if ( tmciThread -> second.m_bHaveToDel ) // Remove this record ! m_mapThreads.erase( tmciThread++ ); else { --- 171,178 ---- if ( tmciThread -> second.m_bHaveToDel ) + { // Remove this record ! m_mapThreads.erase( tmciThread++ ); ! } else { *************** *** 260,265 **** if ( !m_mapThreads.empty() ) { ! for ( ThreadMap::iterator tmciThread = m_mapThreads.begin(); ! tmciThread != m_mapThreads.end(); ) { // Stop --- 262,266 ---- if ( !m_mapThreads.empty() ) { ! for ( ThreadMap::iterator tmciThread = m_mapThreads.begin(); tmciThread != m_mapThreads.end(); ) { // Stop *************** *** 282,289 **** if ( tmciThread -> second.m_bHaveToDel ) // Remove this record ! m_mapThreads.erase( tmciThread++ ); else ++tmciThread; } } // if ( !m_mapThreads.empty() ) --- 283,294 ---- if ( tmciThread -> second.m_bHaveToDel ) + { // Remove this record ! m_mapThreads.erase( tmciThread++ ); ! } else + { ++tmciThread; + } } } // if ( !m_mapThreads.empty() ) |