diff options
author | Ilia Mirkin <[email protected]> | 2013-11-29 04:36:41 -0500 |
---|---|---|
committer | Carl Worth <[email protected]> | 2014-01-02 17:11:17 -0800 |
commit | 3efc2bbf075dc9f828fe87167eef1d2bf862f7aa (patch) | |
tree | 2c356cf97b2996317a0d0b337d3a959fb0229a24 | |
parent | d46a58703ad9321614e701c909455f5f2aeff18e (diff) |
nv50: fix a small leak on context destroy
Signed-off-by: Ilia Mirkin <[email protected]>
(cherry picked from commit f50a45452a4fd4f7cece8fe37c394edac0808136)
-rw-r--r-- | src/gallium/drivers/nouveau/nv50/nv50_context.c | 2 |
1 files changed, 2 insertions, 0 deletions
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); } |