diff options
author | Alan Hourihane <[email protected]> | 2009-11-20 18:08:29 +0000 |
---|---|---|
committer | Alan Hourihane <[email protected]> | 2009-11-20 21:15:22 +0000 |
commit | 1dbf3642b9c1c37f72e2212ce78056cf8959a957 (patch) | |
tree | d163fea9da566819a4336fe595f12fb24dd080d5 /src/gallium/drivers | |
parent | 8556fad75124e1ade9af095e112ebb6ac5cbff61 (diff) |
Fix memory leak.
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_state_fs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/softpipe/sp_state_fs.c b/src/gallium/drivers/softpipe/sp_state_fs.c index 256faa94b84..b41f7e8ab72 100644 --- a/src/gallium/drivers/softpipe/sp_state_fs.c +++ b/src/gallium/drivers/softpipe/sp_state_fs.c @@ -143,6 +143,7 @@ softpipe_delete_vs_state(struct pipe_context *pipe, void *vs) struct sp_vertex_shader *state = (struct sp_vertex_shader *) vs; draw_delete_vertex_shader(softpipe->draw, state->draw_data); + FREE( (void *)state->shader.tokens ); FREE( state ); } |