From e1e30f6dfb52b5c59ed551f13316bce0c039de79 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Thu, 16 Jan 2014 17:34:31 +0000 Subject: [PATCH] nv50: assert before trying to out-of-bounds access framebuffer.cbufs Signed-off-by: Emil Velikov Reviewed-by: Ilia Mirkin --- src/gallium/drivers/nouveau/nv50/nv50_context.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/drivers/nouveau/nv50/nv50_context.c b/src/gallium/drivers/nouveau/nv50/nv50_context.c index 8183b01cbfb..24264d5adbe 100644 --- a/src/gallium/drivers/nouveau/nv50/nv50_context.c +++ b/src/gallium/drivers/nouveau/nv50/nv50_context.c @@ -130,6 +130,7 @@ nv50_invalidate_resource_storage(struct nouveau_context *ctx, unsigned s, i; if (res->bind & PIPE_BIND_RENDER_TARGET) { + assert(nv50->framebuffer.nr_cbufs <= PIPE_MAX_COLOR_BUFS); for (i = 0; i < nv50->framebuffer.nr_cbufs; ++i) { if (nv50->framebuffer.cbufs[i] && nv50->framebuffer.cbufs[i]->texture == res) { -- 2.30.2