diff options
author | Christoph Bumiller <[email protected]> | 2011-03-05 22:28:46 +0100 |
---|---|---|
committer | Christoph Bumiller <[email protected]> | 2011-03-13 13:23:54 +0100 |
commit | d7a23cfb8837b7e2db446f631ef65460cbebee09 (patch) | |
tree | 3ffba7cd47ad7286244432cdc6c29701e906e208 /src/gallium/drivers | |
parent | f10b2021c12bea46d81517f5d5383b2fc0788c10 (diff) |
nvc0: fix unitialized variable in TGSI sysval decl processing
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/nvc0/nvc0_program.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/nvc0/nvc0_program.c b/src/gallium/drivers/nvc0/nvc0_program.c index 899fe147c6a..975745a9dde 100644 --- a/src/gallium/drivers/nvc0/nvc0_program.c +++ b/src/gallium/drivers/nvc0/nvc0_program.c @@ -298,6 +298,7 @@ prog_decl(struct nvc0_translation_info *ti, } break; case TGSI_FILE_SYSTEM_VALUE: + i = first; ti->sysval_loc[i] = nvc0_system_value_location(sn, si, &ti->sysval_in[i]); assert(first == last); break; |