Changeset 78191 in vbox for trunk/src/VBox
- Timestamp:
- Apr 18, 2019 12:20:31 AM (6 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/include/cr_unpack.h
r78190 r78191 126 126 { 127 127 pState->rcUnpack = VERR_BUFFER_OVERFLOW; 128 return SIZE_MAX;128 return ~(size_t)0; 129 129 } 130 130 … … 141 141 { \ 142 142 size_t cchStr = crUnpackAcccessChkStrUpdate((a_pState), (a_pszStr), &int_cbAccessVerified); \ 143 if (RT_UNLIKELY(cchStr == SIZE_MAX)) \143 if (RT_UNLIKELY(cchStr == ~(size_t)0)) \ 144 144 return; \ 145 145 } \ … … 165 165 do \ 166 166 { \ 167 if (RT_UNLIKELY((a_pState)->cbUnpackDataLeft < ( delta))) \167 if (RT_UNLIKELY((a_pState)->cbUnpackDataLeft < (size_t)(delta))) \ 168 168 { \ 169 169 (a_pState)->rcUnpack = VERR_BUFFER_OVERFLOW; \ -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_main.cpp
r78190 r78191 45 45 PFNCRHGSMICMDCOMPLETION g_pfnCrHgsmiCompletion = NULL; 46 46 #endif 47 48 /**49 * \mainpage CrServerLib50 *51 * \section CrServerLibIntroduction Introduction52 *53 * Chromium consists of all the top-level files in the cr54 * directory. The core module basically takes care of API dispatch,55 * and OpenGL state management.56 */57 47 58 48 -
trunk/src/VBox/HostServices/SharedOpenGL/unpacker/unpack_arrays.cpp
r78190 r78191 9 9 #include "unpacker.h" 10 10 #include "cr_glstate.h" 11 /** 12 * \mainpage Unpacker 13 * 14 * \section UnpackerIntroduction Introduction 15 * 16 * Chromium consists of all the top-level files in the cr 17 * directory. The unpacker module basically takes care of API dispatch, 18 * and OpenGL state management. 19 * 20 */ 11 21 12 22 13 void crUnpackExtendVertexPointer(PCrUnpackerState pState)
Note:
See TracChangeset
for help on using the changeset viewer.