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.
2 parents 14ea97a + 038e534 commit c1c3bccCopy full SHA for c1c3bcc
NEWS
@@ -15,6 +15,9 @@ PHP NEWS
15
16
- LDAP:
17
. Fix memory leak in ldap_set_options(). (ndossche)
18
+
19
+- Standard:
20
+ . Fix error check for proc_open() command. (ndossche)
21
22
18 Dec 2025, PHP 8.4.16
23
ext/standard/proc_open.c
@@ -507,7 +507,7 @@ typedef struct _descriptorspec_item {
507
} descriptorspec_item;
508
509
static zend_string *get_valid_arg_string(zval *zv, int elem_num) {
510
- zend_string *str = zval_get_string(zv);
+ zend_string *str = zval_try_get_string(zv);
511
if (!str) {
512
return NULL;
513
}
0 commit comments