diff options
author | Brian Paul <[email protected]> | 2008-05-20 13:48:34 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-05-20 13:49:18 -0600 |
commit | 4b4ac9ed3497d0cbf58311b83ed4a08a98bb854c (patch) | |
tree | 63f72881105014e8d914b219157635888344adf9 | |
parent | d7cf6b29785de51ecd828477ca3f5e2664d555e7 (diff) |
gallium: fix mem leaks
-rw-r--r-- | src/mesa/state_tracker/st_cb_clear.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_cb_clear.c b/src/mesa/state_tracker/st_cb_clear.c index b7d72046339..cdfcdcee72c 100644 --- a/src/mesa/state_tracker/st_cb_clear.c +++ b/src/mesa/state_tracker/st_cb_clear.c @@ -97,6 +97,16 @@ st_destroy_clear(struct st_context *st) { struct pipe_context *pipe = st->pipe; + if (st->clear.vert_shader.tokens) { + FREE((void *) st->clear.vert_shader.tokens); + st->clear.vert_shader.tokens = NULL; + } + + if (st->clear.frag_shader.tokens) { + FREE((void *) st->clear.frag_shader.tokens); + st->clear.frag_shader.tokens = NULL; + } + if (st->clear.fs) { cso_delete_fragment_shader(st->cso_context, st->clear.fs); st->clear.fs = NULL; |