From dd7ab4dcb4357ee19bf9f0ec4cdc2f8f3502d5c0 Mon Sep 17 00:00:00 2001 From: Pierre Moreau Date: Sat, 6 May 2017 23:47:21 +0200 Subject: [PATCH] nv50/ir: Free target if we failed to create a program Signed-off-by: Pierre Moreau Reviewed-by: Ilia Mirkin --- src/gallium/drivers/nouveau/codegen/nv50_ir.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir.cpp index 1f640a348a5..a4b46eb13f1 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir.cpp @@ -1224,8 +1224,10 @@ nv50_ir_generate_code(struct nv50_ir_prog_info *info) return -1; nv50_ir::Program *prog = new nv50_ir::Program(type, targ); - if (!prog) + if (!prog) { + nv50_ir::Target::destroy(targ); return -1; + } prog->driver = info; prog->dbgFlags = info->dbgFlags; prog->optLevel = info->optLevel; -- 2.11.0