projects
/
profile
/
ivi
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e16e706
)
r300g: fix invalid dereference in winsys
author
Marek Olšák
<maraeo@gmail.com>
Fri, 18 Feb 2011 23:06:52 +0000
(
00:06
+0100)
committer
Marek Olšák
<maraeo@gmail.com>
Fri, 18 Feb 2011 23:06:52 +0000
(
00:06
+0100)
radeon_bo_unref may destroy the buffer, so call it after p_atomic_dec, not before.
src/gallium/winsys/radeon/drm/radeon_drm_cs.c
patch
|
blob
|
history
diff --git
a/src/gallium/winsys/radeon/drm/radeon_drm_cs.c
b/src/gallium/winsys/radeon/drm/radeon_drm_cs.c
index
8f6f4a1
..
a38b010
100644
(file)
--- a/
src/gallium/winsys/radeon/drm/radeon_drm_cs.c
+++ b/
src/gallium/winsys/radeon/drm/radeon_drm_cs.c
@@
-110,8
+110,8
@@
static void radeon_cs_context_cleanup(struct radeon_cs_context *csc)
unsigned i;
for (i = 0; i < csc->crelocs; i++) {
- radeon_bo_unref(csc->relocs_bo[i]);
p_atomic_dec(&csc->relocs_bo[i]->num_cs_references);
+ radeon_bo_unref(csc->relocs_bo[i]);
csc->relocs_bo[i] = NULL;
}