From: Nanley Chery Date: Mon, 9 Apr 2018 18:27:08 +0000 (-0700) Subject: i965/miptree: Don't leak the clear_color_bo X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=010abacc95207f600bc750f01d690b1c899e112c;p=mesa.git i965/miptree: Don't leak the clear_color_bo Free the clear_color_bo in addition to freeing the intel_miptree_aux_buffer which holds the reference to it. Reviewed-by: Rafael Antognolli Reviewed-by: Jason Ekstrand --- diff --git a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c index 8d3ddd56544..0580cc05346 100644 --- a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c +++ b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c @@ -2877,8 +2877,7 @@ intel_miptree_make_shareable(struct brw_context *brw, ISL_AUX_USAGE_NONE, false); if (mt->mcs_buf) { - brw_bo_unreference(mt->mcs_buf->bo); - free(mt->mcs_buf); + intel_miptree_aux_buffer_free(mt->mcs_buf); mt->mcs_buf = NULL; /* Any pending MCS/CCS operations are no longer needed. Trying to