projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
22a0029
)
radeon: return EINVAL for 0 length buffers.
author
Robert Noland
<rnoland@2hip.net>
Wed, 14 Oct 2009 18:58:56 +0000
(13:58 -0500)
committer
Alex Deucher
<alexdeucher@gmail.com>
Thu, 15 Oct 2009 15:29:35 +0000
(11:29 -0400)
Signed-off-by: Robert Noland <rnoland@2hip.net>
src/mesa/drivers/dri/radeon/radeon_bo_legacy.c
patch
|
blob
|
history
diff --git
a/src/mesa/drivers/dri/radeon/radeon_bo_legacy.c
b/src/mesa/drivers/dri/radeon/radeon_bo_legacy.c
index 3e7547d2f9d26e46b660aabe5cd00197719935b1..ce60a2f7eaea83e1227cb458f919ba388df70990 100644
(file)
--- a/
src/mesa/drivers/dri/radeon/radeon_bo_legacy.c
+++ b/
src/mesa/drivers/dri/radeon/radeon_bo_legacy.c
@@
-710,6
+710,10
@@
int radeon_bo_legacy_validate(struct radeon_bo *bo,
bo, bo->size, bo_legacy->map_count);
return -EINVAL;
}
+ if(bo->size == 0) {
+ fprintf(stderr, "bo(%p) has size 0.\n", bo);
+ return -EINVAL;
+ }
if (bo_legacy->static_bo || bo_legacy->validated) {
*soffset = bo_legacy->offset;
*eoffset = bo_legacy->offset + bo->size;