Browse Source

Merge pull request #744 from masahir0y/fiptool

fiptool: fix Segmentation fault when only --verbose option is given
pull/749/head
davidcunado-arm 8 years ago
committed by GitHub
parent
commit
061723f96c
  1. 2
      tools/fiptool/fiptool.c

2
tools/fiptool/fiptool.c

@ -985,6 +985,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++) {

Loading…
Cancel
Save