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/gccld.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/gccld.cpp')
-rw-r--r-- | tools/gccld/gccld.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gccld/gccld.cpp b/tools/gccld/gccld.cpp index 809db2adac..00cf657192 100644 --- a/tools/gccld/gccld.cpp +++ b/tools/gccld/gccld.cpp @@ -299,7 +299,7 @@ int main(int argc, char **argv, char **envp ) { Libraries, gcc, envp ); // Remove the assembly language file. - AssemblyFile.destroyFile();; + AssemblyFile.destroyFile(); } else if (NativeCBE) { sys::Path CFile (OutputFilename); CFile.appendSuffix("cbe.c"); |