diff options
author | Ilia Mirkin <[email protected]> | 2015-10-01 20:27:06 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2015-10-02 14:14:27 -0400 |
commit | 4e0a8e0a50c9ac91cb7a70b92b8d9c6fcc02b7aa (patch) | |
tree | 5c315b5829ffff94bdf9952aea44054b90d69db3 /src/mesa | |
parent | 19598aaa5d0ea318ebd4a7e731bcaacaa4f3fe7c (diff) |
i965: don't forget to free image_param on prog_data free
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Iago Toral Quiroga <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_program.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_program.c b/src/mesa/drivers/dri/i965/brw_program.c index fee96a8c9b0..0e4b823b6e9 100644 --- a/src/mesa/drivers/dri/i965/brw_program.c +++ b/src/mesa/drivers/dri/i965/brw_program.c @@ -551,6 +551,7 @@ brw_stage_prog_data_free(const void *p) ralloc_free(prog_data->param); ralloc_free(prog_data->pull_param); + ralloc_free(prog_data->image_param); } void |