summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-rw-r--r--commands/of_node.c3
-rw-r--r--commands/of_property.c3
2 files changed, 6 insertions, 0 deletions
diff --git a/commands/of_node.c b/commands/of_node.c
index 2f6ecae33e..171ea2ce4c 100644
--- a/commands/of_node.c
+++ b/commands/of_node.c
@@ -54,6 +54,9 @@ static int do_of_node(int argc, char *argv[])
}
}
+ if (optind == argc)
+ return COMMAND_ERROR_USAGE;
+
if (optind < argc) {
path = argv[optind];
}
diff --git a/commands/of_property.c b/commands/of_property.c
index 585522c3d4..bd9ff72fbc 100644
--- a/commands/of_property.c
+++ b/commands/of_property.c
@@ -192,6 +192,9 @@ static int do_of_property(int argc, char *argv[])
}
}
+ if (optind == argc)
+ return COMMAND_ERROR_USAGE;
+
root = of_get_root_node();
if (!root) {
printf("root node not set\n");