mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 04:38:03 +02:00
r600/sfn: Use the correct allocator for loop lists
This fixes a memory leak. Signed-off-by: Gert Wollny <gert.wollny@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18983>
This commit is contained in:
parent
4b7ae72c46
commit
04aea1c0ba
1 changed files with 1 additions and 1 deletions
|
|
@ -382,7 +382,7 @@ private:
|
|||
};
|
||||
|
||||
InstructionChain m_chain_instr;
|
||||
std::vector<Instr *> m_loops;
|
||||
std::list<Instr *, Allocator<Instr *>> m_loops;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue