diff options
author | Vinson Lee <[email protected]> | 2010-03-06 20:30:28 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-03-06 20:30:28 -0800 |
commit | 661b416e07004655af3f372114119e4f8166496e (patch) | |
tree | 8d8d37f47eb1a0155481bf894c512ce9075d922b | |
parent | ba8f4c5d36e6c9cd806a4c3360a8202b1f81ee05 (diff) |
gallivm: Initialize variables for default cases.
Fixes use of uninitialized variables in non-debug builds.
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c b/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c index bc2f307c33b..9058f76c1df 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c @@ -538,6 +538,9 @@ lp_build_sample_wrap_linear(struct lp_build_sample_context *bld, default: assert(0); + coord0 = NULL; + coord1 = NULL; + weight = NULL; } *x0_out = coord0; @@ -700,6 +703,7 @@ lp_build_sample_wrap_nearest(struct lp_build_sample_context *bld, default: assert(0); + icoord = NULL; } return icoord; |