Made -quoted_path_list continue to execute words after error in the same line

This commit is contained in:
Thomas Schmitt 2010-06-22 13:27:25 +00:00
parent c54b5bc6a2
commit bf24ba81c5
2 changed files with 10 additions and 8 deletions

View File

@ -154,7 +154,6 @@ int Xorriso_option_path_list(struct XorrisO *xorriso, char *adr, int flag)
if(ret<=0 || xorriso->request_to_abort)
goto problem_handler;
insertcount++;
}
continue; /* regular bottom of loop */
problem_handler:;
@ -162,8 +161,11 @@ problem_handler:;
fret= Xorriso_eval_problem_status(xorriso, ret, 1|2);
if(fret>=0)
continue;
if(ret > 0)
ret= 0;
goto ex;
}
}
ret= 1;
ex:;
if(flag & 1)

View File

@ -1 +1 @@
#define Xorriso_timestamP "2010.06.20.164738"
#define Xorriso_timestamP "2010.06.22.132641"