From: Brian Paul Date: Thu, 9 Sep 2010 16:03:46 +0000 (-0600) Subject: llvmpipe: remove redundant tgsi_dup_tokens() call X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3ec296390c250dbcdc2690e78da9a51ec57dabf5;p=mesa.git llvmpipe: remove redundant tgsi_dup_tokens() call We were calling this twice so the first allocation was orphaned/leaked. --- diff --git a/src/gallium/drivers/llvmpipe/lp_state_fs.c b/src/gallium/drivers/llvmpipe/lp_state_fs.c index 8f3976c0f90..e17bfb490c2 100644 --- a/src/gallium/drivers/llvmpipe/lp_state_fs.c +++ b/src/gallium/drivers/llvmpipe/lp_state_fs.c @@ -901,9 +901,6 @@ llvmpipe_create_fs_state(struct pipe_context *pipe, debug_printf("\n"); } - /* Keep a copy of the tokens in shader->base.tokens */ - shader->base.tokens = tgsi_dup_tokens(templ->tokens); - return shader; }