diff options
author | Aapo Tahkola <aet@rasterburn.org> | 2006-03-22 21:29:15 +0000 |
---|---|---|
committer | Aapo Tahkola <aet@rasterburn.org> | 2006-03-22 21:29:15 +0000 |
commit | 6fc864b9e6f98041479ca7cf1d8226985312a2de (patch) | |
tree | e829e870572b7f2797be01ade6afa05de71305fe /src | |
parent | daffbe99dc77c0f1cae23fd03e02d61ef354c1dc (diff) |
ARL dst idx was undefined.
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/shader/arbprogparse.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/shader/arbprogparse.c b/src/mesa/shader/arbprogparse.c index a64360adbe..a3c433b0c3 100644 --- a/src/mesa/shader/arbprogparse.c +++ b/src/mesa/shader/arbprogparse.c @@ -2296,7 +2296,8 @@ parse_address_reg (GLcontext * ctx, GLubyte ** inst, { struct var_cache *dst; GLuint result; - (void) Index; + + *Index = 0; /* XXX */ dst = parse_string (inst, vc_head, Program, &result); Program->Position = parse_position (inst); |