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,15 +154,17 @@ 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 */
continue; /* regular bottom of loop */
problem_handler:;
was_failure= 1;
fret= Xorriso_eval_problem_status(xorriso, ret, 1|2);
if(fret>=0)
continue;
goto ex;
was_failure= 1;
fret= Xorriso_eval_problem_status(xorriso, ret, 1|2);
if(fret>=0)
continue;
if(ret > 0)
ret= 0;
goto ex;
}
}
ret= 1;
ex:;

View File

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