diff options
Diffstat (limited to 'src/mesa/main/bufferobj.c')
-rw-r--r-- | src/mesa/main/bufferobj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/bufferobj.c b/src/mesa/main/bufferobj.c index 07b2341ff7a..a1d4c0190a1 100644 --- a/src/mesa/main/bufferobj.c +++ b/src/mesa/main/bufferobj.c @@ -449,11 +449,11 @@ _mesa_validate_pbo_access(GLuint dimensions, format, type, depth-1, height-1, width); - if ((const GLubyte *) start > (const GLubyte *) pack->BufferObj->Size) { + if ((const GLubyte *) start > (const GLubyte *)(uintptr_t) pack->BufferObj->Size) { /* This will catch negative values / wrap-around */ return GL_FALSE; } - if ((const GLubyte *) end > (const GLubyte *) pack->BufferObj->Size) { + if ((const GLubyte *) end > (const GLubyte *)(uintptr_t) pack->BufferObj->Size) { /* Image read goes beyond end of buffer */ return GL_FALSE; } |