]> git.baikalelectronics.ru Git - uboot.git/commit
cmd: fdt: Check argc before accessing argv in fdt memory
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Thu, 2 Mar 2023 03:08:19 +0000 (04:08 +0100)
committerSimon Glass <sjg@chromium.org>
Thu, 9 Mar 2023 16:50:47 +0000 (08:50 -0800)
commit822f5600d025aba16d795fba19214d8362da3c76
tree04fe9a8075b03373e5398f46a280d187dd2d89d4
parent91b448845875bd1175e3ce894dd9cf0cf0267750
cmd: fdt: Check argc before accessing argv in fdt memory

On case 'fdt memory' is invoked without parameters, argv[2]/argv[3]
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