mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 02:58:05 +02:00
mesa: fix leaking ParameterValueOffset
==15115== 48 bytes in 1 blocks are definitely lost in loss record 16 of 66
==15115== at 0x4C2EC15: realloc (vg_replace_malloc.c:785)
==15115== by 0x8602C3E: _mesa_reserve_parameter_storage (prog_parameter.c:212)
==15115== by 0x8602D1E: _mesa_add_parameter (prog_parameter.c:252)
==15115== by 0x86032C4: _mesa_add_sized_state_reference (prog_parameter.c:384)
==15115== by 0x8603324: _mesa_add_state_reference (prog_parameter.c:409)
Fixes: edded12376 "mesa: rework ParameterList to allow packing"
Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
This commit is contained in:
parent
478fc2d2a1
commit
604cac9f73
1 changed files with 1 additions and 0 deletions
|
|
@ -180,6 +180,7 @@ _mesa_free_parameter_list(struct gl_program_parameter_list *paramList)
|
|||
free((void *)paramList->Parameters[i].Name);
|
||||
}
|
||||
free(paramList->Parameters);
|
||||
free(paramList->ParameterValueOffset);
|
||||
_mesa_align_free(paramList->ParameterValues);
|
||||
free(paramList);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue