From 04aea1c0ba7f1ba86f7916080699c66b95f180e1 Mon Sep 17 00:00:00 2001 From: Gert Wollny Date: Wed, 28 Sep 2022 14:52:15 +0200 Subject: [PATCH] r600/sfn: Use the correct allocator for loop lists This fixes a memory leak. Signed-off-by: Gert Wollny Part-of: --- src/gallium/drivers/r600/sfn/sfn_shader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/r600/sfn/sfn_shader.h b/src/gallium/drivers/r600/sfn/sfn_shader.h index 1eaa87861b8..d7e69b4e334 100644 --- a/src/gallium/drivers/r600/sfn/sfn_shader.h +++ b/src/gallium/drivers/r600/sfn/sfn_shader.h @@ -382,7 +382,7 @@ private: }; InstructionChain m_chain_instr; - std::vector m_loops; + std::list> m_loops; };