[Mesa-dev] [PATCH 4/4] mesa/main: Free ctx->DrawIndirectBuffer during teardown
Brian Paul
brianp at vmware.com
Mon Jan 6 08:13:03 PST 2014
On 01/02/2014 11:38 AM, Aaron Watry wrote:
> ctx->DrawIndirectBuffer wasn't being free'd in _mesa_free_buffer_objects
>
> With this patch, "valgrind --leak-check=full glxgears" on evergreen (CEDAR)
> now shows:
>
> LEAK SUMMARY:
> definitely lost: 0 bytes in 0 blocks
> indirectly lost: 0 bytes in 0 blocks
> possibly lost: 0 bytes in 0 blocks
> still reachable: 70,228 bytes in 651 blocks
> suppressed: 0 bytes in 0 blocks
>
> CC: "10.0" <mesa-stable at lists.freedesktop.org>
> ---
> src/mesa/main/bufferobj.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/src/mesa/main/bufferobj.c b/src/mesa/main/bufferobj.c
> index a3d8f24..9336759 100644
> --- a/src/mesa/main/bufferobj.c
> +++ b/src/mesa/main/bufferobj.c
> @@ -871,6 +871,8 @@ _mesa_free_buffer_objects( struct gl_context *ctx )
>
> _mesa_reference_buffer_object(ctx, &ctx->UniformBuffer, NULL);
>
> + _mesa_reference_buffer_object(ctx, &ctx->DrawIndirectBuffer, NULL);
> +
> for (i = 0; i < MAX_COMBINED_UNIFORM_BUFFERS; i++) {
> _mesa_reference_buffer_object(ctx,
> &ctx->UniformBufferBindings[i].BufferObject,
>
Reviewed-by: Brian Paul <brianp at vmware.com>
More information about the mesa-dev
mailing list