From: Ilia Mirkin Date: Fri, 29 Nov 2013 09:36:41 +0000 (-0500) Subject: nv50: fix a small leak on context destroy X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f50a45452a4fd4f7cece8fe37c394edac0808136;p=mesa.git nv50: fix a small leak on context destroy Signed-off-by: Ilia Mirkin --- 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); }