From: Dave Airlie Date: Fri, 30 Nov 2012 08:33:21 +0000 (+1000) Subject: glsl: fix cut-n-paste error in error handling. (v2) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e85c9a4d2874a302195c66742b446f0645440c43;p=mesa.git glsl: fix cut-n-paste error in error handling. (v2) Reported by coverity scan. v2: fix second case Note: This is a candidate for stable branches. Reviewed-by: Matt Turner Reviewed-by: Ian Romanick Signed-off-by: Dave Airlie --- diff --git a/src/glsl/ir_validate.cpp b/src/glsl/ir_validate.cpp index af0b5768ac0..ad57a3149b1 100644 --- a/src/glsl/ir_validate.cpp +++ b/src/glsl/ir_validate.cpp @@ -120,7 +120,7 @@ ir_visitor_status ir_validate::visit_leave(ir_loop *ir) { if (ir->counter != NULL) { - if ((ir->from == NULL) || (ir->from == NULL) || (ir->increment == NULL)) { + if ((ir->from == NULL) || (ir->to == NULL) || (ir->increment == NULL)) { printf("ir_loop has invalid loop controls:\n" " counter: %p\n" " from: %p\n" @@ -136,7 +136,7 @@ ir_validate::visit_leave(ir_loop *ir) abort(); } } else { - if ((ir->from != NULL) || (ir->from != NULL) || (ir->increment != NULL)) { + if ((ir->from != NULL) || (ir->to != NULL) || (ir->increment != NULL)) { printf("ir_loop has invalid loop controls:\n" " counter: %p\n" " from: %p\n"