diff options
author | Kenneth Graunke <[email protected]> | 2014-08-28 15:33:56 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2014-09-03 17:25:56 -0700 |
commit | 5ced83ee1561553d9eba831fa356bf63cc214447 (patch) | |
tree | cc53c0d3ddbcc01d5f338dc7b3c68b2b1ab1b7ba /src/glsl/opt_copy_propagation_elements.cpp | |
parent | 8270b048cf23ee8a8d5377a3af62fce7086e9c61 (diff) |
glsl: Initialize source_chan in opt_copy_propagation_elements.
Previously, if chans < 4, we passed uninitialized stack garbage to the
ir_swizzle constructor for the excess components. Thankfully, it
ignores that data, as it's unnecessary, so no harm actually comes of it.
However, it's obviously better to initialize it.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/glsl/opt_copy_propagation_elements.cpp')
-rw-r--r-- | src/glsl/opt_copy_propagation_elements.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/opt_copy_propagation_elements.cpp b/src/glsl/opt_copy_propagation_elements.cpp index f5f59b7d34a..f131894608d 100644 --- a/src/glsl/opt_copy_propagation_elements.cpp +++ b/src/glsl/opt_copy_propagation_elements.cpp @@ -207,7 +207,7 @@ ir_copy_propagation_elements_visitor::handle_rvalue(ir_rvalue **ir) int swizzle_chan[4]; ir_dereference_variable *deref_var; ir_variable *source[4] = {NULL, NULL, NULL, NULL}; - int source_chan[4]; + int source_chan[4] = {0, 0, 0, 0}; int chans; if (!*ir) |