projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6842829
)
mesa: add missing return after catching program error
author
Brian Paul
<brianp@vmware.com>
Thu, 30 Jul 2009 14:20:01 +0000
(08:20 -0600)
committer
Brian Paul
<brianp@vmware.com>
Thu, 30 Jul 2009 14:23:26 +0000
(08:23 -0600)
src/mesa/shader/arbprogparse.c
patch
|
blob
|
history
diff --git
a/src/mesa/shader/arbprogparse.c
b/src/mesa/shader/arbprogparse.c
index 0d4f13c97085740dc65401bdab296c4d80796067..10897922f6e8ef1aab38d4cb0ae881fd7de6c676 100644
(file)
--- a/
src/mesa/shader/arbprogparse.c
+++ b/
src/mesa/shader/arbprogparse.c
@@
-2008,6
+2008,7
@@
parse_param (GLcontext * ctx, const GLubyte ** inst, struct var_cache **vc_head,
program_error(ctx, Program->Position,
"Declared parameter array length does not match parameter list");
}
+ return 1;
}
(*inst)++;