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 <vlee@freedesktop.org>
Reviewed-by: Chia-I Wu <olvaffe@gmail.com>
This commit is contained in:
Vinson Lee 2013-05-22 23:24:35 -07:00 committed by Chia-I Wu
parent 36e2c7cc1a
commit e3eeb72f24

View file

@ -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);