i965: Fix leak of the program cache BO on context destroy.
authorEric Anholt <eric@anholt.net>
Thu, 12 Jan 2012 21:01:21 +0000 (13:01 -0800)
committerEric Anholt <eric@anholt.net>
Wed, 18 Jan 2012 17:59:12 +0000 (09:59 -0800)
NOTE: This is a candidate for the 8.0 branch.

src/mesa/drivers/dri/i965/brw_state_cache.c

index 3988625..4ae8e12 100644 (file)
@@ -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;