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
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)