We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fc18a8 commit a0e71cbCopy full SHA for a0e71cb
NEWS
@@ -14,6 +14,9 @@ PHP NEWS
14
. Fixed bug GH-11134 (Incorrect match default branch optimization). (ilutov)
15
. Fixed too wide OR and AND range inference. (nielsdos)
16
17
+- PCNTL:
18
+ . Fixed maximum argument count of pcntl_forkx(). (nielsdos)
19
+
20
- PGSQL:
21
. Fixed parameter parsing of pg_lo_export(). (kocsismate)
22
ext/pcntl/pcntl.c
@@ -1295,7 +1295,7 @@ PHP_FUNCTION(pcntl_forkx)
1295
zend_long flags;
1296
pid_t pid;
1297
1298
- ZEND_PARSE_PARAMETERS_START(1, 2)
+ ZEND_PARSE_PARAMETERS_START(1, 1)
1299
Z_PARAM_LONG(flags)
1300
ZEND_PARSE_PARAMETERS_END();
1301
0 commit comments