1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00
llvm-svn: 82384
This commit is contained in:
Chris Lattner 2009-09-20 07:16:54 +00:00
parent c09c2772d5
commit 268bcdc194

View File

@ -759,7 +759,7 @@ void cl::ParseCommandLineOptions(int argc, char **argv,
// Free all the strdup()ed strings.
for (std::vector<char*>::iterator i = newArgv.begin(), e = newArgv.end();
i != e; ++i)
free (*i);
free(*i);
}
// If we had an error processing our arguments, don't let the program execute