Mesa (master): nv50: Silence uninitialized variable warning.

Vinson Lee vlee at kemper.freedesktop.org
Thu Sep 16 00:28:12 UTC 2010


Module: Mesa
Branch: master
Commit: 84e41b738bc397d59c192f2035b4f220f48250dc
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=84e41b738bc397d59c192f2035b4f220f48250dc

Author: Vinson Lee <vlee at vmware.com>
Date:   Wed Sep 15 17:27:50 2010 -0700

nv50: Silence uninitialized variable warning.

---

 src/gallium/drivers/nv50/nv50_tgsi_to_nc.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/src/gallium/drivers/nv50/nv50_tgsi_to_nc.c b/src/gallium/drivers/nv50/nv50_tgsi_to_nc.c
index 921a1d5..012d100 100644
--- a/src/gallium/drivers/nv50/nv50_tgsi_to_nc.c
+++ b/src/gallium/drivers/nv50/nv50_tgsi_to_nc.c
@@ -289,7 +289,8 @@ bld_phi(struct bld_context *bld, struct nv_basic_block *b,
         struct bld_value_stack *stack)
 {
    struct nv_basic_block *in;
-   struct nv_value *vals[16], *val;
+   struct nv_value *vals[16] = { 0 };
+   struct nv_value *val;
    struct nv_instruction *phi;
    int i, j, n;
 




More information about the mesa-commit mailing list