- Timestamp:
- Nov 25, 2011 10:50:35 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestControl/service.cpp
r39420 r39421 520 520 } 521 521 522 ClientContextsListIter itContext = mClientContextsList.begin();523 while ( itContext != mClientContextsList.end()522 ClientContextsListIter itContextList = mClientContextsList.begin(); 523 while ( itContextList != mClientContextsList.end() 524 524 && RT_SUCCESS(rc)) 525 525 { … … 529 529 * anymore. 530 530 */ 531 if ( itContext ->mClientID == u32ClientID531 if ( itContextList->mClientID == u32ClientID 532 532 || fAllClientsDisconnected) 533 533 { 534 std::list< uint32_t >::iterator itContext = itContext ->mContextList.begin();535 while (itContext != itContext ->mContextList.end())534 std::list< uint32_t >::iterator itContext = itContextList->mContextList.begin(); 535 while (itContext != itContextList->mContextList.end()) 536 536 { 537 537 uint32_t uContextID = (*itContext); … … 552 552 itContext++; 553 553 } 554 itContext = mClientContextsList.erase(itContext);554 itContextList = mClientContextsList.erase(itContextList); 555 555 } 556 556 else 557 itContext ++;557 itContextList++; 558 558 } 559 559
Note:
See TracChangeset
for help on using the changeset viewer.