Assume all the short args have optional args so allocate space for the

':'. It's slightly wasteful, but much easier (and the savings in bytes
at runtime would be tiny, but the code to do it larger).

Submitted by: Sebastian Huber
This commit is contained in:
Warner Losh 2019-09-11 13:34:19 +00:00
parent 490e13c140
commit 21fae2d64f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=352212

View File

@ -189,7 +189,7 @@ arg_parse(int argc, char * const * argv, const struct cmd *f)
lopts = malloc((n + 2) * sizeof(struct option));
if (lopts == NULL)
err(1, "option memory");
p = shortopts = malloc((n + 3) * sizeof(char));
p = shortopts = malloc((2 * n + 3) * sizeof(char));
if (shortopts == NULL)
err(1, "shortopts memory");
idx = 0;