Changeset 6783 in vbox
- Timestamp:
- Feb 4, 2008 1:26:21 PM (17 years ago)
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest.cpp
r6453 r6783 604 604 { 605 605 pInfo->u32Result = VBOXGUEST_WAITEVENT_TIMEOUT; 606 Log(("VBoxGuestCommonIOCtl: WAITEVENT: returns V INF_TIMEOUT\n"));606 Log(("VBoxGuestCommonIOCtl: WAITEVENT: returns VERR_TIMEOUT\n")); 607 607 return VERR_TIMEOUT; 608 608 } … … 668 668 { 669 669 pInfo->u32Result = VBOXGUEST_WAITEVENT_TIMEOUT; 670 Log(("VBoxGuestCommonIOCtl: WAITEVENT: returns V INF_TIMEOUT\n"));670 Log(("VBoxGuestCommonIOCtl: WAITEVENT: returns VERR_TIMEOUT\n")); 671 671 } 672 672 else if (rc == VERR_INTERRUPTED) -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibSeamless.cpp
r6780 r6783 111 111 int rc; 112 112 113 if ( 0 == cRects)113 if (!cRects || !pRects) 114 114 return VINF_SUCCESS; 115 115 rc = vbglR3GRAlloc((VMMDevRequestHeader **)&pReq, -
trunk/src/VBox/Additions/x11/xclient/seamless-guest.h
r6290 r6783 79 79 }; 80 80 81 #if defined(RT_OS_LINUX) 81 #if defined(RT_OS_LINUX) || defined(RT_OS_SOLARIS) 82 82 # include "seamless-x11.h" /* for VBoxGuestSeamlessGuestImpl */ 83 83 #else -
trunk/src/VBox/Additions/x11/xclient/seamless-host.cpp
r6290 r6783 135 135 return; 136 136 } 137 VbglR3SeamlessSendRects(pRects.get()->size(), pRects.get()-> data());137 VbglR3SeamlessSendRects(pRects.get()->size(), pRects.get()->empty() ? NULL : &pRects.get()->front()); 138 138 } 139 139
Note:
See TracChangeset
for help on using the changeset viewer.