fdt: Add a check to fdt_print() 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: Simon Glass <sjg@chromium.org>
Reported-by: Coverity (CID: 163248)
master
Simon Glass 7 years ago committed by Tom Rini
parent 72c98ed1ab
commit 9f95267271
  1. 2
      cmd/fdt.c

@ -975,7 +975,7 @@ static int fdt_print(const char *pathp, char *prop, int depth)
/* no property value */
printf("%s %s\n", pathp, prop);
return 0;
} else if (len > 0) {
} else if (nodep && len > 0) {
printf("%s = ", prop);
print_data (nodep, len);
printf("\n");

Loading…
Cancel
Save