Merge pull request #7854 from neikeq/pr-execute-iter
Replace misuse of list iteration
This commit is contained in:
commit
2d3dd6f6ee
1 changed files with 3 additions and 3 deletions
|
@ -1968,10 +1968,10 @@ Error OS_Windows::execute(const String& p_path, const List<String>& p_arguments,
|
|||
|
||||
String argss;
|
||||
argss="\"\""+p_path+"\"";
|
||||
|
||||
for (const List<String>::Element* E=p_arguments.front(); E; E=E->next()) {
|
||||
|
||||
for(int i=0;i<p_arguments.size();i++) {
|
||||
|
||||
argss+=String(" \"")+p_arguments[i]+"\"";
|
||||
argss+=String(" \"")+E->get()+"\"";
|
||||
}
|
||||
|
||||
//print_line("ARGS: "+argss);
|
||||
|
|
Loading…
Reference in a new issue