1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Check for NULL return from getgrgid(), per Seth Hettich

This commit is contained in:
Bruce Momjian
2001-10-29 17:55:41 +00:00
parent f2a2ad59bc
commit 40b1403ae8

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/init/Attic/findbe.c,v 1.23 2001/10/21 03:43:54 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/init/Attic/findbe.c,v 1.24 2001/10/29 17:55:41 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -103,7 +103,7 @@ ValidateBinary(char *path)
if (pwp->pw_gid == buf.st_gid)
++in_grp;
else if (pwp->pw_name &&
(gp = getgrgid(buf.st_gid)))
(gp = getgrgid(buf.st_gid)) != NULL)
{
for (i = 0; gp->gr_mem[i]; ++i)
{