From 41f76dd513b03e7e7490c0f766e47dcf813a607f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tapani=20P=C3=A4lli?= Date: Tue, 2 Apr 2019 09:12:21 +0300 Subject: [PATCH] iris: move variable to the scope where it is being used MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit iris_upload_border_color is passed a pointer which points to variable that is introduced in a different scope. CID: 1444296 Signed-off-by: Tapani Pälli Reviewed-by: Kenneth Graunke --- src/gallium/drivers/iris/iris_state.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/iris/iris_state.c b/src/gallium/drivers/iris/iris_state.c index 970d2190a09..591c6359315 100644 --- a/src/gallium/drivers/iris/iris_state.c +++ b/src/gallium/drivers/iris/iris_state.c @@ -1532,8 +1532,8 @@ iris_upload_sampler_states(struct iris_context *ice, gl_shader_stage stage) * back into A. */ union pipe_color_union *color = &state->border_color; + union pipe_color_union tmp; if (tex) { - union pipe_color_union tmp; enum pipe_format internal_format = tex->res->internal_format; if (util_format_is_alpha(internal_format)) { -- 2.30.2