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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user