Changeset 17999 in vbox for trunk/src/VBox/Additions/common/VBoxGuest
- Timestamp:
- Mar 17, 2009 8:22:40 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 44586
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest.cpp
r17210 r17999 1146 1146 { 1147 1147 VBoxGuestHGCMDisconnectInfo Info; 1148 Info.result = (uint32_t)VERR_WRONG_ORDER; /** @todo Vitali, why is this member unsigned? */1148 Info.result = VERR_WRONG_ORDER; 1149 1149 Info.u32ClientID = pDevExt->u32ClipboardClientId; 1150 1150 rc = VbglHGCMDisconnect(&Info, VBoxGuestHGCMAsyncWaitCallback, pDevExt, RT_INDEFINITE_WAIT); … … 1169 1169 strcpy(Info.Loc.u.host.achName, "VBoxSharedClipboard"); 1170 1170 Info.u32ClientID = 0; 1171 Info.result = (uint32_t)VERR_WRONG_ORDER;1171 Info.result = VERR_WRONG_ORDER; 1172 1172 1173 1173 rc = VbglHGCMConnect(&Info, VBoxGuestHGCMAsyncWaitCallback, pDevExt, RT_INDEFINITE_WAIT); … … 1177 1177 return rc; 1178 1178 } 1179 if (RT_FAILURE( (int32_t)Info.result))1179 if (RT_FAILURE(Info.result)) 1180 1180 { 1181 1181 LogRel(("VBoxGuestCommonIOCtl: CLIPBOARD_CONNECT: VbglHGCMConnected -> rc=%Rrc\n", rc));
Note:
See TracChangeset
for help on using the changeset viewer.