From: Chia-I Wu Date: Thu, 27 Jun 2013 06:52:54 +0000 (+0800) Subject: ilo: avoid potential dangling pointer dereference X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e071812e46617b6f1d335aef6381de7b6afc269f;p=mesa.git ilo: avoid potential dangling pointer dereference Set pipe_draw_info to NULL after draw_vbo(). --- diff --git a/src/gallium/drivers/ilo/ilo_3d.c b/src/gallium/drivers/ilo/ilo_3d.c index ef3aeced340..65adcf26f7e 100644 --- a/src/gallium/drivers/ilo/ilo_3d.c +++ b/src/gallium/drivers/ilo/ilo_3d.c @@ -729,6 +729,9 @@ ilo_draw_vbo(struct pipe_context *pipe, const struct pipe_draw_info *info) ilo->dirty = 0x0; hw3d->new_batch = false; + /* avoid dangling pointer reference */ + ilo->draw = NULL; + update_prim_count(hw3d, prim_generated, prim_emitted); if (ilo_debug & ILO_DEBUG_NOCACHE)