1// commit fc5a96c9c8aa186effad7520d5df6b616bbfd29d
2// getpwnam_r should not crash on nonexistant users when errno is 0
3
4#include <pwd.h>
5#include "test.h"
6
7int main(void)
8{
9	struct passwd *pw, pwbuf;
10	char buf[1024];
11	getpwnam_r("nonsensical_user", &pwbuf, buf, sizeof buf, &pw);
12	return t_status;
13}
14