From: Pádraig Brady Date: Sat, 6 May 2023 10:22:22 +0000 (+0100) Subject: pr: fix parsing of empty arguments X-Git-Tag: v9.4~138 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fae65623a92a3f150fd35cfef58dcb3d8533f94c;p=thirdparty%2Fcoreutils.git pr: fix parsing of empty arguments Before: $ pr --expand-tabs= pr: '-e' extra characters or invalid number in the argument: ‘SHELL=/bin/bash’: Value too large for defined data type After: $ pr --expand-tabs= pr: '-e': Invalid argument: ‘’ * src/pr.c (getoptarg): Ensure we don't parse beyond the end of an empty argument, thus outputting arbitrary stack info in subsequent error messages. Addresses https://bugs.debian.org/1035596 --- diff --git a/src/pr.c b/src/pr.c index 14a368b6c9..1c32e8c81d 100644 --- a/src/pr.c +++ b/src/pr.c @@ -1168,6 +1168,12 @@ getoptnum (char const *n_str, int min, int *num, char const *err) static void getoptarg (char *arg, char switch_char, char *character, int *number) { + if (!*arg) + { + error (0, 0, _("'-%c': Invalid argument: %s"), switch_char, quote (arg)); + usage (EXIT_FAILURE); + } + if (!ISDIGIT (*arg)) *character = *arg++; if (*arg)