From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> Not reseting optind may crash the tool if getopt and variants are called a second time. --- src/shared/shell.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shared/shell.c b/src/shared/shell.c index 9ecb4c7be..0653c0ea1 100644 --- a/src/shared/shell.c +++ b/src/shared/shell.c @@ -817,6 +817,7 @@ void bt_shell_init(int argc, char **argv, const struct bt_shell_opt *opt) data.argc = argc - optind; data.argv = argv + optind; + optind = 0; data.mode = (data.argc > 0); if (data.mode) -- 2.14.3 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html