fiptool: fix Segmentation fault when only --verbose option is given

Fix the following bug:

  $ tools/fiptool/fiptool -v
  Segmentation fault (core dumped)

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
Masahiro Yamada 2016-10-26 13:24:26 +09:00
parent ad09652c41
commit c9cb408997
1 changed files with 2 additions and 0 deletions

View File

@ -983,6 +983,8 @@ int main(int argc, char *argv[])
strcmp(argv[0], "--verbose") == 0) {
verbose = 1;
argc--, argv++;
if (argc < 1)
usage();
}
for (i = 0; i < NELEM(cmds); i++) {