Changeset 56030 in vbox for trunk/src/VBox/HostServices/GuestControl
- Timestamp:
- May 22, 2015 2:06:29 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 100548
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestControl/service.cpp
r50825 r56030 701 701 } 702 702 703 curItem++;703 ++curItem; 704 704 } 705 705 } … … 1084 1084 } 1085 1085 1086 bool fAllClientsDisconnected = mClientStateMap. size() == 0;1086 bool fAllClientsDisconnected = mClientStateMap.empty(); 1087 1087 if (fAllClientsDisconnected) 1088 1088 { … … 1339 1339 * the guest is not running/system is messed up somehow. 1340 1340 */ 1341 if (mClientStateMap. size() == 0)1341 if (mClientStateMap.empty()) 1342 1342 return VERR_NOT_FOUND; 1343 1343 … … 1390 1390 } 1391 1391 1392 itClientState++;1392 ++itClientState; 1393 1393 } 1394 1394 … … 1529 1529 LogFlowFunc(("Cancelling waiting for client ID=%RU32 failed with rc=%Rrc", 1530 1530 itClientState->first, rc2)); 1531 itClientState++;1531 ++itClientState; 1532 1532 } 1533 1533 rc = VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.