mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-23 23:01:28 +02:00
cmd: ubi: Fix 'ubi list' command arguments parsing
This fixes allowed argc variable value for arguments parsing Fixes: 6de1daf64b1 ("cmd: ubi: Add 'ubi list' command") Signed-off-by: Dmitry Dunaev <dunaev@tecon.ru>
This commit is contained in:
parent
832148f675
commit
34031e9cce
@ -653,7 +653,7 @@ static int do_ubi(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
|
|||||||
|
|
||||||
if (strcmp(argv[1], "list") == 0) {
|
if (strcmp(argv[1], "list") == 0) {
|
||||||
int numeric = 0;
|
int numeric = 0;
|
||||||
if (argc >= 2 && argv[2][0] == '-') {
|
if (argc >= 3 && argv[2][0] == '-') {
|
||||||
if (strcmp(argv[2], "-numeric") == 0)
|
if (strcmp(argv[2], "-numeric") == 0)
|
||||||
numeric = 1;
|
numeric = 1;
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user