Module: Mesa Branch: master Commit: e3eeb72f2437c95ff92e4ef29afe2e6bad250c36 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=e3eeb72f2437c95ff92e4ef29afe2e6bad250c36
Author: Vinson Lee <[email protected]> Date: Wed May 22 23:24:35 2013 -0700 ilo: Initialize need_flush in draw_vbo. need_flush was uninitialized if hw3d->new_batch was true. Fixes "Uninitialized scalar variable" defect reported by Coverity. Signed-off-by: Vinson Lee <[email protected]> Reviewed-by: Chia-I Wu <[email protected]> --- src/gallium/drivers/ilo/ilo_3d.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gallium/drivers/ilo/ilo_3d.c b/src/gallium/drivers/ilo/ilo_3d.c index 980bdb4..ba3fa96 100644 --- a/src/gallium/drivers/ilo/ilo_3d.c +++ b/src/gallium/drivers/ilo/ilo_3d.c @@ -371,7 +371,7 @@ draw_vbo(struct ilo_3d *hw3d, const struct ilo_context *ilo, const struct pipe_draw_info *info, int *prim_generated, int *prim_emitted) { - bool need_flush; + bool need_flush = false; int max_len; ilo_3d_own_render_ring(hw3d); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
