Skip to content
Snippets Groups Projects
Commit 72c98ed1 authored by Simon Glass's avatar Simon Glass Committed by Tom Rini
Browse files

fdt: Add a check to do_fdt() for coverity


We know that fdt_getprop() does not return NULL when len is > 0 but
coverity does not. Add an extra check to keep it happy.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Reported-by: Coverity (CID: 163249)
Fixes: bc80295b (fdt: Add get commands to fdt)
parent 96725153
No related branches found
No related tags found
No related merge requests found
...@@ -380,7 +380,7 @@ static int do_fdt(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) ...@@ -380,7 +380,7 @@ static int do_fdt(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
/* no property value */ /* no property value */
setenv(var, ""); setenv(var, "");
return 0; return 0;
} else if (len > 0) { } else if (nodep && len > 0) {
if (subcmd[0] == 'v') { if (subcmd[0] == 'v') {
int ret; int ret;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment