From: Marek Olšák Date: Sun, 19 Nov 2017 03:36:38 +0000 (+0100) Subject: gallium/hud: prevent a crash if the recording context is inactive X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9c5b4eb6b4ea46af274927a0af5907e996bcdcfe;p=mesa.git gallium/hud: prevent a crash if the recording context is inactive Reviewed-by: Nicolai Hähnle --- diff --git a/src/gallium/auxiliary/hud/hud_context.c b/src/gallium/auxiliary/hud/hud_context.c index e3fcad22f79..7502416c5b8 100644 --- a/src/gallium/auxiliary/hud/hud_context.c +++ b/src/gallium/auxiliary/hud/hud_context.c @@ -74,7 +74,10 @@ hud_draw_colored_prims(struct hud_context *hud, unsigned prim, struct cso_context *cso = hud->cso; unsigned size = num_vertices * hud->color_prims.vbuf.stride; - assert(size <= hud->color_prims.buffer_size); + /* If a recording context is inactive, don't draw anything. */ + if (size > hud->color_prims.buffer_size) + return; + memcpy(hud->color_prims.vertices, buffer, size); hud->constants.color[0] = r;