From 7cefd0e9d596e0adc45b693d3f18d53ed0db259b Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Fri, 14 Jan 2011 22:34:17 +0000 Subject: [PATCH] Fix memory leak found by clang static analyzer. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123487 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvm-ld/llvm-ld.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/llvm-ld/llvm-ld.cpp b/tools/llvm-ld/llvm-ld.cpp index 475fcf4d8ac..442c4da5697 100644 --- a/tools/llvm-ld/llvm-ld.cpp +++ b/tools/llvm-ld/llvm-ld.cpp @@ -178,7 +178,7 @@ static char ** CopyEnv(char ** const envp) { // Allocate a new environment list. char **newenv = new char* [entries]; - if ((newenv = new char* [entries]) == NULL) + if (newenv == NULL) return NULL; // Make a copy of the list. Don't forget the NULL that ends the list. -- 2.34.1