1 Author: Denis Briand <debian@denis-briand.fr>
2 Bug-Debian: https://bugs.debian.org/859407
3 Description: if USER env variable isn't defined, use nobody account to avoid SIGSEGV with getpwnam
11 + //if USER env variable isn't defined, use nobody account to avoid SIGSEGV with getpwnam
13 + username = "nobody";
16 pwent = getpwnam(username);
18 if((tmp = xstrdup(pwent->pw_gecos)) == NULL)