On Sat, Apr 12, 2014 at 12:10:54PM +0400, Alexander Shiyan wrote: > Signed-off-by: Alexander Shiyan <shc_work@xxxxxxx> Applied this series without 05/12 and 07/12 for now. Sascha > --- > scripts/imx/imx-image.c | 11 +++++++---- > 1 file changed, 7 insertions(+), 4 deletions(-) > > diff --git a/scripts/imx/imx-image.c b/scripts/imx/imx-image.c > index 1d935be..f87f4d2 100644 > --- a/scripts/imx/imx-image.c > +++ b/scripts/imx/imx-image.c > @@ -528,7 +528,7 @@ static int parse_config(const char *filename) > int lineno = 0; > char *line = NULL, *tmp; > char *argv[MAXARGS]; > - int nargs, i, ret; > + int nargs, i, ret = 0; > > f = fopen(filename, "r"); > if (!f) { > @@ -559,7 +559,7 @@ static int parse_config(const char *filename) > if (ret) { > fprintf(stderr, "error in line %d: %s\n", > lineno, strerror(-ret)); > - return ret; > + goto out_parse; > } > break; > } > @@ -567,11 +567,14 @@ static int parse_config(const char *filename) > > if (ret == -ENOENT) { > fprintf(stderr, "no such command: %s\n", argv[0]); > - return ret; > + break; > } > } > > - return 0; > +out_parse: > + fclose(f); > + > + return ret; > } > > static int xread(int fd, void *buf, int len) > -- > 1.8.3.2 > > > _______________________________________________ > barebox mailing list > barebox@xxxxxxxxxxxxxxxxxxx > http://lists.infradead.org/mailman/listinfo/barebox > -- Pengutronix e.K. | | Industrial Linux Solutions | http://www.pengutronix.de/ | Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | _______________________________________________ barebox mailing list barebox@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/barebox