Merge "fastboot: check argc before using argv"

This commit is contained in:
Colin Cross 2012-07-24 18:07:05 -07:00 committed by android code review
commit f650c07586

View file

@ -825,7 +825,7 @@ int main(int argc, char **argv)
return 1;
}
if (!strcmp(*argv, "devices")) {
if (argc > 0 && !strcmp(*argv, "devices")) {
skip(1);
list_devices();
return 0;