diff options
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/pbo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/pbo.c b/src/mesa/main/pbo.c index 5c906ed749a..259f763208e 100644 --- a/src/mesa/main/pbo.c +++ b/src/mesa/main/pbo.c @@ -80,7 +80,7 @@ _mesa_validate_pbo_access(GLuint dimensions, */ if (!_mesa_is_bufferobj(pack->BufferObj)) { offset = 0; - size = clientMemSize; + size = (clientMemSize == INT_MAX) ? UINTPTR_MAX : clientMemSize; } else { offset = (uintptr_t)ptr; size = pack->BufferObj->Size; |