fusermount: Check for argv[0] being present (#577)
authorrichardweinberger <richard@nod.at>
Fri, 8 Jan 2021 10:07:02 +0000 (11:07 +0100)
committerGitHub <noreply@github.com>
Fri, 8 Jan 2021 10:07:02 +0000 (10:07 +0000)
commit699ab32b5dbaf44d715aa08aa21d1ec62e479d2b
tree5a28550f768215a420908101d3227cd4424980dd
parentccba27fbec00d253102395cbdab048f0553c1938
fusermount: Check for argv[0] being present (#577)

It is perfectly legal to execute a program with argc == 0 and therefore
no argv.
fusermount needs to check for this case, otherwise it will pass a NULL
poiunter to strdup() and cause undefined behavior.
Especially since fusermount is setuid root, we need to extra be careful.

Signed-off-by: Richard Weinberger <richard@nod.at>
util/fusermount.c