diff options
author | Chris Lattner <sabre@nondot.org> | 2005-02-13 23:02:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-02-13 23:02:34 +0000 |
commit | ed5fa58a07d0383c239ab98d532f8f6047fbb215 (patch) | |
tree | 518cb9a102720a36f216eadb3b8e0c1f1e1a8541 /tools/gccld/GenerateCode.cpp | |
parent | 946af52687fea113a6596385bfbdb26994709a37 (diff) |
Make sure to null terminate argument lists!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20166 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/gccld/GenerateCode.cpp')
-rw-r--r-- | tools/gccld/GenerateCode.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/gccld/GenerateCode.cpp b/tools/gccld/GenerateCode.cpp index b189d0654f..1d4c5205cf 100644 --- a/tools/gccld/GenerateCode.cpp +++ b/tools/gccld/GenerateCode.cpp @@ -247,6 +247,7 @@ int llvm::GenerateAssembly(const std::string &OutputFilename, args.push_back("-o"); args.push_back(OutputFilename.c_str()); args.push_back(InputFilename.c_str()); + args.push_back(0); return sys::Program::ExecuteAndWait(llc, &args[0]); } @@ -263,6 +264,7 @@ int llvm::GenerateCFile(const std::string &OutputFile, args.push_back("-o"); args.push_back(OutputFile.c_str()); args.push_back(InputFile.c_str()); + args.push_back(0); return sys::Program::ExecuteAndWait(llc, &args[0]); } @@ -322,6 +324,7 @@ int llvm::GenerateNative(const std::string &OutputFilename, args.push_back(Libraries[index].c_str()); } } + args.push_back(0); // Run the compiler to assembly and link together the program. return sys::Program::ExecuteAndWait(gcc, &args[0], (const char**)clean_env); |