|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2016-05-01 03:05 UTC] laruence@php.net
  [2016-05-01 03:05 UTC] laruence@php.net
 
-Status: Open
+Status: Closed
  [2016-07-20 11:31 UTC] davey@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 14:00:01 2025 UTC | 
Description: ------------ php_posix_group_to_array crashes if g->gr_passwd is NULL Easy fix would be: if (g->gr_passwd == NULL) { add_assoc_null(array_group, "passwd"); } else { add_assoc_string(array_group, "passwd", g->gr_passwd); }