[git commit] man: fix segfault in "man 1"

Denys Vlasenko vda.linux at googlemail.com
Tue Jun 15 12:47:46 UTC 2021


commit: https://git.busybox.net/busybox/commit/?id=4d4fc5ca5ee4faae5dc4237f801d9527a3fb20cc
branch: https://git.busybox.net/busybox/commit/?id=refs/heads/master

function                                             old     new   delta
man_main                                             942     954     +12

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 miscutils/man.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/miscutils/man.c b/miscutils/man.c
index 722f6641e..d319e8bba 100644
--- a/miscutils/man.c
+++ b/miscutils/man.c
@@ -324,7 +324,7 @@ int man_main(int argc UNUSED_PARAM, char **argv)
 
 	/* is 1st ARG a SECTION? */
 	sec_list = conf_sec_list;
-	if (is_section_name(conf_sec_list, *argv)) {
+	if (is_section_name(conf_sec_list, *argv) && argv[1]) {
 		/* yes */
 		sec_list = *argv++;
 	}


More information about the busybox-cvs mailing list