]> git.baikalelectronics.ru Git - uboot.git/commit
cmd: fdt: Check argc before accessing argv in fdt bootcpu
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Thu, 2 Mar 2023 03:08:18 +0000 (04:08 +0100)
committerSimon Glass <sjg@chromium.org>
Wed, 8 Mar 2023 19:40:57 +0000 (11:40 -0800)
commit0961cff5d38679d6537f476123a96536353b598e
tree868a383974c3413d9b488bdfaadce71018a7f2cd
parentfb910e021a8dfeb291fdf382b17f2c323d7fd7a5
cmd: fdt: Check argc before accessing argv in fdt bootcpu

On case 'fdt bootcpu' is invoked without parameters, argv[2] is not
valid and this command would SEGFAULT in sandbox environment. Add
missing argc test to avoid the crash and rather print usage help
message.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
cmd/fdt.c