Changeset 73223 in vbox for trunk/src/VBox/GuestHost/OpenGL/util
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo
-
old new 8 8 /branches/VBox-5.0:104445,104938,104943,104950,104952-104953,104987-104988,104990,106453 9 9 /branches/VBox-5.1:112367,115992,116543,116550,116568,116573 10 /branches/VBox-5.2:120083,120099,120213,120221,120239 10 /branches/VBox-5.2:120083,120099,120213,120221,120239,123597-123598,123600-123601,123755 11 11 /branches/andy/draganddrop:90781-91268 12 12 /branches/andy/guestctrl20:78916,78930
-
- Property svn:mergeinfo
-
trunk/src/VBox
- Property svn:mergeinfo
-
old new 8 8 /branches/VBox-5.0/src/VBox:104938,104943,104950,104987-104988,104990,106453 9 9 /branches/VBox-5.1/src/VBox:112367,116543,116550,116568,116573 10 /branches/VBox-5.2/src/VBox:120083,120099,120213,120221,120239 10 /branches/VBox-5.2/src/VBox:120083,120099,120213,120221,120239,123597-123598,123600-123601,123755 11 11 /branches/andy/draganddrop/src/VBox:90781-91268 12 12 /branches/andy/guestctrl20/src/VBox:78916,78930
-
- Property svn:mergeinfo
-
trunk/src/VBox/GuestHost/OpenGL/util/vboxhgcm.c
r69989 r73223 1079 1079 1080 1080 #ifndef IN_GUEST 1081 /* Expect only CR_MESSAGE_OPCODES from the guest. */ 1082 AssertPtrReturnVoid(conn->pBuffer); 1083 1084 if ( conn->cbBuffer >= sizeof(CRMessageHeader) 1085 && ((CRMessageHeader*) (conn->pBuffer))->type == CR_MESSAGE_OPCODES) 1086 { 1087 /* Looks good. */ 1088 } 1089 else 1090 { 1091 AssertFailed(); 1092 /** @todo Find out if this is the expected cleanup. */ 1093 conn->cbBuffer = 0; 1094 conn->pBuffer = NULL; 1095 return; 1096 } 1097 #endif 1098 1099 #ifndef IN_GUEST 1081 1100 if (conn->allow_redir_ptr) 1082 1101 {
Note:
See TracChangeset
for help on using the changeset viewer.