[Mesa-dev] [PATCH] i965: don't forget to free image_param on prog_data free
Iago Toral
itoral at igalia.com
Thu Oct 1 23:56:03 PDT 2015
Reviewed-by: Iago Toral Quiroga <itoral at igalia.com>
On Thu, 2015-10-01 at 20:27 -0400, Ilia Mirkin wrote:
> Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
> ---
> src/mesa/drivers/dri/i965/brw_program.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/src/mesa/drivers/dri/i965/brw_program.c b/src/mesa/drivers/dri/i965/brw_program.c
> index fee96a8..0e4b823 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
More information about the mesa-dev
mailing list