From: Eric Anholt Date: Thu, 12 Jan 2012 21:01:21 +0000 (-0800) Subject: i965: Fix leak of the program cache BO on context destroy. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cbd464a117317f276b65cbca69d6339166581bf7;p=mesa.git i965: Fix leak of the program cache BO on context destroy. NOTE: This is a candidate for the 8.0 branch. --- diff --git a/src/mesa/drivers/dri/i965/brw_state_cache.c b/src/mesa/drivers/dri/i965/brw_state_cache.c index 3988625ea91..4ae8e1212ff 100644 --- a/src/mesa/drivers/dri/i965/brw_state_cache.c +++ b/src/mesa/drivers/dri/i965/brw_state_cache.c @@ -386,6 +386,8 @@ brw_destroy_cache(struct brw_context *brw, struct brw_cache *cache) DBG("%s\n", __FUNCTION__); + drm_intel_bo_unreference(cache->bo); + cache->bo = NULL; brw_clear_cache(brw, cache); free(cache->items); cache->items = NULL;