summaryrefslogtreecommitdiff
path: root/ext/standard/exec.c
diff options
context:
space:
mode:
authorJan Lehnardt <jan@php.net>2002-10-24 08:46:21 +0000
committerJan Lehnardt <jan@php.net>2002-10-24 08:46:21 +0000
commitcf4d435a12c821bcdf34b55ff156831c608219fc (patch)
tree6629f95304ca0fb5f91633763f25bdfbff81ad38 /ext/standard/exec.c
parentf29195825655e7952b7d288f7b2be4c742340f77 (diff)
downloadphp-git-cf4d435a12c821bcdf34b55ff156831c608219fc.tar.gz
- fix segfault in proc_open
#no bugreports found
Diffstat (limited to 'ext/standard/exec.c')
-rw-r--r--ext/standard/exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/exec.c b/ext/standard/exec.c
index 441ae1f665..b962ea90c3 100644
--- a/ext/standard/exec.c
+++ b/ext/standard/exec.c
@@ -761,7 +761,7 @@ PHP_FUNCTION(proc_open)
if (zend_hash_index_find(Z_ARRVAL_PP(descitem), 0, (void **)&ztype) == SUCCESS) {
convert_to_string_ex(ztype);
} else {
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "Missing handle qualifier in array", Z_STRVAL_PP(ztype));
+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "Missing handle qualifier in array");
goto exit_fail;
}