diff options
author | Jonathan Liu <[email protected]> | 2013-12-14 07:15:00 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-12-22 07:07:07 -0700 |
commit | 670be71bd801fea876f7512865ed5f54340da9be (patch) | |
tree | 12f2d92fd80c80892e9f756a1311b9dfde7ca364 /src/mesa/state_tracker | |
parent | b094b3b9f4c7b40056c31e3480ab7dc530da56e7 (diff) |
st/mesa: use pipe_sampler_view_release()
This fixes a crash where old_view->context was already freed in the
pipe_sampler_view_reference function contained in
src/gallium/auxiliary/utils/u_inlines.h. As a result, the
sampler_view_destroy function pointer contained 0xfeeefeee indicating
freed heap memory.
Cc: "10.0" <[email protected]>
Signed-off-by: Jonathan Liu <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker')
-rw-r--r-- | src/mesa/state_tracker/st_atom_texture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_atom_texture.c b/src/mesa/state_tracker/st_atom_texture.c index d79e04cf49c..bd0a22dde42 100644 --- a/src/mesa/state_tracker/st_atom_texture.c +++ b/src/mesa/state_tracker/st_atom_texture.c @@ -255,7 +255,7 @@ update_single_texture(struct st_context *st, stObj->base.DepthMode) || (view_format != stObj->sampler_view->format) || stObj->base.BaseLevel != stObj->sampler_view->u.tex.first_level) { - pipe_sampler_view_reference(&stObj->sampler_view, NULL); + pipe_sampler_view_release(pipe, &stObj->sampler_view); } } |