From: Dmitry Dunaev Date: Wed, 12 Jul 2023 12:58:21 +0000 (+0300) Subject: cmd: ubi: Fix 'ubi list' command arguments parsing X-Git-Tag: v2025.01-rc5-pxa1908~885^2 X-Git-Url: http://git.dujemihanovic.xyz/html/static/git-favicon.png?a=commitdiff_plain;h=34031e9cce91de323ed711d7e8614c0d12fada1c;p=u-boot.git 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 --- diff --git a/cmd/ubi.c b/cmd/ubi.c index b61ae1efea..0a6a80bdd1 100644 --- a/cmd/ubi.c +++ b/cmd/ubi.c @@ -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) { int numeric = 0; - if (argc >= 2 && argv[2][0] == '-') { + if (argc >= 3 && argv[2][0] == '-') { if (strcmp(argv[2], "-numeric") == 0) numeric = 1; else