diff options
author | Vinson Lee <[email protected]> | 2013-08-04 00:13:53 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2013-08-05 21:53:39 -0700 |
commit | 60b567ee59b96b9fa334bf59d3d443c29c590c54 (patch) | |
tree | b461ac9b8c6d8c19ab912e2e8b875abf86db3b58 /src/gallium/drivers/nvc0/nvc0_context.c | |
parent | 8e850f2febd7b37485675e58e31221fc71080dd4 (diff) |
nvc0: Initialize ptr for unexpected sample_count on release builds.
Fixes "Uninitialized pointer read" defect reported by Coverity.
Signed-off-by: Vinson Lee <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nvc0/nvc0_context.c')
-rw-r--r-- | src/gallium/drivers/nvc0/nvc0_context.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/nvc0/nvc0_context.c b/src/gallium/drivers/nvc0/nvc0_context.c index cd86040ab01..8cd5fc5a646 100644 --- a/src/gallium/drivers/nvc0/nvc0_context.c +++ b/src/gallium/drivers/nvc0/nvc0_context.c @@ -394,6 +394,7 @@ nvc0_context_get_sample_position(struct pipe_context *pipe, case 8: ptr = ms8; break; default: assert(0); + ptr = ms1; break; } xy[0] = ptr[sample_index][0] * 0.0625f; |