Changeset 44869 in vbox for trunk/src/VBox/HostServices
- Timestamp:
- Feb 28, 2013 3:42:02 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 84027
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestControl/service.cpp
r44863 r44869 409 409 typedef struct ClientState 410 410 { 411 ClientState(void) 412 : mSvcHelpers(NULL), 413 mFlags(0), mContextFilter(0), 414 mpHostCmd(NULL), mHostCmdRc(VINF_SUCCESS), mHostCmdTries(0), 415 mIsPending(false) {} 416 411 417 ClientState(PVBOXHGCMSVCHELPERS pSvcHelpers) 412 : mSvcHelpers(pSvcHelpers), mpHostCmd(NULL), 413 mFlags(0), mContextFilter(0), mIsPending(false), 414 mHostCmdTries(0), mHostCmdRc(VINF_SUCCESS) {} 415 416 ClientState(void) 417 : mSvcHelpers(NULL), mpHostCmd(NULL), 418 mFlags(0), mContextFilter(0), mIsPending(false), 419 mHostCmdTries(0), mHostCmdRc(VINF_SUCCESS) {} 418 : mSvcHelpers(pSvcHelpers), 419 mFlags(0), mContextFilter(0), 420 mpHostCmd(NULL), mHostCmdRc(VINF_SUCCESS), mHostCmdTries(0), 421 mIsPending(false) {} 420 422 421 423 bool WantsHostCommand(const HostCommand *pHostCmd) const … … 913 915 itContext++; 914 916 } 915 itClientState = mClientStateMap.erase(itClientState);917 mClientStateMap.erase(itClientState++); 916 918 } 917 919 else
Note:
See TracChangeset
for help on using the changeset viewer.