From b59c6989814f7ac966ee702789b34f32a1439aaf Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Wed, 21 Apr 2021 14:27:21 +0200 Subject: [PATCH] Fix argv overrun in getconf (bug 27761) Correct argument counter accounting when processing the -v option with the argument directly attached. --- posix/getconf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/posix/getconf.c b/posix/getconf.c index efc9623b3b..4dccc9cbf2 100644 --- a/posix/getconf.c +++ b/posix/getconf.c @@ -519,7 +519,7 @@ environment SPEC.\n\n")); else { argv += 1; - argc += 1; + argc -= 1; } } #else @@ -544,7 +544,7 @@ environment SPEC.\n\n")); { spec = &argv[1][2]; argv += 1; - argc += 1; + argc -= 1; } } else