From f50a45452a4fd4f7cece8fe37c394edac0808136 Mon Sep 17 00:00:00 2001 From: Ilia Mirkin Date: Fri, 29 Nov 2013 04:36:41 -0500 Subject: [PATCH] nv50: fix a small leak on context destroy Signed-off-by: Ilia Mirkin --- src/gallium/drivers/nouveau/nv50/nv50_context.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gallium/drivers/nouveau/nv50/nv50_context.c b/src/gallium/drivers/nouveau/nv50/nv50_context.c index b6bdf79b389..11afc48eab6 100644 --- a/src/gallium/drivers/nouveau/nv50/nv50_context.c +++ b/src/gallium/drivers/nouveau/nv50/nv50_context.c @@ -114,6 +114,8 @@ nv50_destroy(struct pipe_context *pipe) draw_destroy(nv50->draw); #endif + FREE(nv50->blit); + nouveau_context_destroy(&nv50->base); } -- 2.30.2