From 1763494b315179495eabb97d50d025a04a6537e2 Mon Sep 17 00:00:00 2001 From: Ilia Mirkin Date: Sat, 21 Feb 2015 12:44:05 -0500 Subject: [PATCH] tgsi: avoid returning pointer to local var, make it static MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Spotted by Coverity. Signed-off-by: Ilia Mirkin Reviewed-by: Matt Turner Reviewed-by: Marek Olšák --- src/gallium/auxiliary/tgsi/tgsi_exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.c b/src/gallium/auxiliary/tgsi/tgsi_exec.c index a8fc0089f5a..8d08059deca 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_exec.c +++ b/src/gallium/auxiliary/tgsi/tgsi_exec.c @@ -1515,7 +1515,7 @@ store_dest_dstret(struct tgsi_exec_machine *mach, enum tgsi_exec_datatype dst_datatype) { uint i; - union tgsi_exec_channel null; + static union tgsi_exec_channel null; union tgsi_exec_channel *dst; union tgsi_exec_channel index2D; uint execmask = mach->ExecMask; -- 2.30.2