Commit 8469a338 authored by Bruce Momjian's avatar Bruce Momjian

Add gp->gr_mem != NULL check for Solaris, per Seth Hettich

parent 40b1403a
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/init/Attic/findbe.c,v 1.24 2001/10/29 17:55:41 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/init/Attic/findbe.c,v 1.25 2001/10/29 18:06:54 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -103,7 +103,8 @@ ValidateBinary(char *path) ...@@ -103,7 +103,8 @@ ValidateBinary(char *path)
if (pwp->pw_gid == buf.st_gid) if (pwp->pw_gid == buf.st_gid)
++in_grp; ++in_grp;
else if (pwp->pw_name && else if (pwp->pw_name &&
(gp = getgrgid(buf.st_gid)) != NULL) (gp = getgrgid(buf.st_gid)) != NULL &&
gp->gr_mem != NULL)
{ {
for (i = 0; gp->gr_mem[i]; ++i) for (i = 0; gp->gr_mem[i]; ++i)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment