From 89d6044b7b70304bdd9ebab734d8b1c0826cbdb8 Mon Sep 17 00:00:00 2001 From: Morgan Armand Date: Mon, 7 Nov 2011 19:37:48 +0100 Subject: softpipe: fix memory leaks This series of patches is a splitted version of my previous one, as suggested by Brian. Signed-off-by: Brian Paul --- src/gallium/drivers/softpipe/sp_state_derived.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/gallium/drivers/softpipe/sp_state_derived.c') diff --git a/src/gallium/drivers/softpipe/sp_state_derived.c b/src/gallium/drivers/softpipe/sp_state_derived.c index fd688089a3e..f89d23c9f26 100644 --- a/src/gallium/drivers/softpipe/sp_state_derived.c +++ b/src/gallium/drivers/softpipe/sp_state_derived.c @@ -295,9 +295,12 @@ update_polygon_stipple_pattern(struct softpipe_context *softpipe) tex = util_pstipple_create_stipple_texture(&softpipe->pipe, softpipe->poly_stipple.stipple); pipe_resource_reference(&softpipe->pstipple.texture, tex); + pipe_resource_reference(&tex, NULL); - view = util_pstipple_create_sampler_view(&softpipe->pipe, tex); + view = util_pstipple_create_sampler_view(&softpipe->pipe, + softpipe->pstipple.texture); pipe_sampler_view_reference(&softpipe->pstipple.sampler_view, view); + pipe_sampler_view_reference(&view, NULL); } -- cgit v1.2.3