Skip to content

Commit 359af7c

Browse files
committed
Merge branch 'PHP-7.0'
2 parents 6a9a0f2 + 8e85553 commit 359af7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/posix/posix.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -987,7 +987,7 @@ int php_posix_group_to_array(struct group *g, zval *array_group) /* {{{ */
987987
array_init(&array_members);
988988

989989
add_assoc_string(array_group, "name", g->gr_name);
990-
if (array_group->gr_passwd) {
990+
if (g->gr_passwd) {
991991
add_assoc_string(array_group, "passwd", g->gr_passwd);
992992
} else {
993993
add_assoc_null(array_group, "passwd");

0 commit comments

Comments
 (0)