From ecae1fca6f93eafb1916aa8621be04edd9228041 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Mon, 16 Aug 2010 05:05:43 +0200 Subject: [PATCH] r300g: fix an invalid pointer in free --- src/gallium/drivers/r300/r300_context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/r300/r300_context.c b/src/gallium/drivers/r300/r300_context.c index d783f21..a83ad89 100644 --- a/src/gallium/drivers/r300/r300_context.c +++ b/src/gallium/drivers/r300/r300_context.c @@ -153,7 +153,7 @@ static void r300_destroy_context(struct pipe_context* context) FREE(r300->ztop_state.state); FREE(r300->fs_constants.state); FREE(r300->vs_constants.state); - if (r300->vertex_stream_state.state) { + if (!r300->screen->caps.has_tcl) { FREE(r300->vertex_stream_state.state); } } -- 2.7.4