From: Brian Paul Date: Thu, 30 Jul 2009 15:02:27 +0000 (-0600) Subject: mesa: move misplaced return statement X-Git-Tag: 062012170305~16521^2~67 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=35e3449ad7a01c63219249b37886d59e93cbf7ac;p=profile%2Fivi%2Fmesa.git mesa: move misplaced return statement Fixes regression from commit 7d93f817c9c5222e2bdbaa9fa9f03fc502bfe878 --- diff --git a/src/mesa/shader/arbprogparse.c b/src/mesa/shader/arbprogparse.c index 1089792..8607940 100644 --- a/src/mesa/shader/arbprogparse.c +++ b/src/mesa/shader/arbprogparse.c @@ -2007,8 +2007,8 @@ parse_param (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head, if (specified_length != (int)param_var->param_binding_length) { program_error(ctx, Program->Position, "Declared parameter array length does not match parameter list"); + return 1; } - return 1; } (*inst)++;