intel: Fix memory leak in intel_miptree_create()
On failure, intel_miptree_create() needs to *release* the miptree, not just free it, so that the stencil_mt gets released too. Reviewed-by: Eric Anholt <eric@anholt.net> Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
This commit is contained in:
@@ -204,7 +204,7 @@ intel_miptree_create(struct intel_context *intel,
|
||||
* pitch == 0 || height == 0 indicates the null texture
|
||||
*/
|
||||
if (!mt || !mt->total_width || !mt->total_height) {
|
||||
free(mt);
|
||||
intel_miptree_release(&mt);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -216,7 +216,7 @@ intel_miptree_create(struct intel_context *intel,
|
||||
expect_accelerated_upload);
|
||||
|
||||
if (!mt->region) {
|
||||
free(mt);
|
||||
intel_miptree_release(&mt);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user