summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/ilo/ilo_state.c
diff options
context:
space:
mode:
authorChia-I Wu <[email protected]>2013-06-27 11:44:27 +0800
committerChia-I Wu <[email protected]>2013-06-27 11:46:58 +0800
commit9f3cfe6aafc210906be85de065afff7503ef240b (patch)
tree1f06692cd3283a63e8150d93498e8cfee7612737 /src/gallium/drivers/ilo/ilo_state.c
parenteabe068747007c7c66632ca5e5b8b350889282e7 (diff)
ilo: plug a potential index buffer leak
This is harmless since st_context and u_vbuf both set index buffer to NULL before destroying themselves. But we do not want to rely on that behavior.
Diffstat (limited to 'src/gallium/drivers/ilo/ilo_state.c')
-rw-r--r--src/gallium/drivers/ilo/ilo_state.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/ilo/ilo_state.c b/src/gallium/drivers/ilo/ilo_state.c
index 59d3c3612a0..17d12441945 100644
--- a/src/gallium/drivers/ilo/ilo_state.c
+++ b/src/gallium/drivers/ilo/ilo_state.c
@@ -1248,6 +1248,7 @@ ilo_cleanup_states(struct ilo_context *ilo)
}
pipe_resource_reference(&ilo->ib.state.buffer, NULL);
+ pipe_resource_reference(&ilo->ib.resource, NULL);
for (i = 0; i < ilo->so.count; i++)
pipe_so_target_reference(&ilo->so.states[i], NULL);