Bug#754813: since 2.19: getpwuid() fails in statically linked programs

2015-10-21 Thread Andrey Gursky
> This is a regression introduced in 2.19 by the following commit: Aurelien, thanks for the information. Regards, Andrey P.S. I never received a copy of your email answer.

Bug#754813: since 2.19: getpwuid() fails in statically linked programs

2014-07-14 Thread Andrey Gursky
Package: glibc Version: 2.19-5 Severity: normal Dear maintainers, since glibc 2.19 getpwuid() fails in a statically linked program (pw == NULL): #include unistd.h #include sys/types.h #include stdio.h #include pwd.h int main() { int uid; struct passwd *pw; uid=getuid();