Mesa (master): nv50/ir: Free target if we failed to create a program

Ilia Mirkin imirkin at kemper.freedesktop.org
Sun May 7 14:28:52 UTC 2017


Module: Mesa
Branch: master
Commit: dd7ab4dcb4357ee19bf9f0ec4cdc2f8f3502d5c0
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=dd7ab4dcb4357ee19bf9f0ec4cdc2f8f3502d5c0

Author: Pierre Moreau <pierre.morrow at free.fr>
Date:   Sat May  6 23:47:21 2017 +0200

nv50/ir: Free target if we failed to create a program

Signed-off-by: Pierre Moreau <pierre.morrow at free.fr>
Reviewed-by: Ilia Mirkin <imirkin at alum.mit.edu>

---

 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 1f640a348a..a4b46eb13f 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;




More information about the mesa-commit mailing list