diff options
-rw-r--r-- | src/vlib/cli.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/vlib/cli.c b/src/vlib/cli.c index cad105f17c6..a00ae6245f9 100644 --- a/src/vlib/cli.c +++ b/src/vlib/cli.c @@ -1224,6 +1224,9 @@ add_sub_command (vlib_cli_main_t * cm, uword parent_index, uword child_index) vec_add (sub_name, c->path + l + 1, vec_len (c->path) - (l + 1)); } + /* "Can't happen," check mainly to shut up coverity */ + ALWAYS_ASSERT (sub_name != 0); + if (sub_name[0] == '%') { uword *q; |