mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 22:49:13 +02:00
etnaviv: Release screen->dummy_desc_reloc.bo
We are currently trying to release twice the same dummy BO, while leaking the other one. Fixes:bca5ef70a4("etnaviv: split dummy RT backing store from reloc") Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34627> (cherry picked from commit63251d43ae)
This commit is contained in:
parent
b9ed912660
commit
e38631ad0a
2 changed files with 3 additions and 3 deletions
|
|
@ -34,7 +34,7 @@
|
|||
"description": "etnaviv: Release screen->dummy_desc_reloc.bo",
|
||||
"nominated": true,
|
||||
"nomination_type": 2,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": "bca5ef70a436380d1b6cb0f5bd84f1872cabc5e5",
|
||||
"notes": null
|
||||
|
|
|
|||
|
|
@ -95,8 +95,8 @@ etna_screen_destroy(struct pipe_screen *pscreen)
|
|||
if (screen->dummy_bo)
|
||||
etna_bo_del(screen->dummy_bo);
|
||||
|
||||
if (screen->dummy_rt_reloc.bo)
|
||||
etna_bo_del(screen->dummy_rt_reloc.bo);
|
||||
if (screen->dummy_desc_reloc.bo)
|
||||
etna_bo_del(screen->dummy_desc_reloc.bo);
|
||||
|
||||
if (screen->perfmon)
|
||||
etna_perfmon_del(screen->perfmon);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue