Changeset 59856 in vbox
- Timestamp:
- Feb 26, 2016 3:47:54 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/DragAndDrop/service.cpp
r59832 r59856 1242 1242 /* Note: Report the current rc back to the guest. */ 1243 1243 pClient->completeDeferred(rc); 1244 1245 m_clientQueue.pop_front();1246 1244 } 1247 1245 /* … … 1256 1254 pClient->completeDeferred(rc); 1257 1255 } 1258 else /* Should not happen. */ 1259 AssertMsgFailed(("Client ID=%RU32 in wrong state with uMsg=%RU32 (next message in queue: %RU32)\n", 1260 pClient->clientId(), uMsgClient, uMsgNext)); 1256 else /* Should not happen; cancel the operation on the guest. */ 1257 { 1258 LogFunc(("Client ID=%RU32 in wrong state with uMsg=%RU32 (next message in queue: %RU32), cancelling\n", 1259 pClient->clientId(), uMsgClient, uMsgNext)); 1260 1261 pClient->completeDeferred(VERR_CANCELLED); 1262 } 1263 1264 m_clientQueue.pop_front(); 1261 1265 } 1262 1266
Note:
See TracChangeset
for help on using the changeset viewer.