diff options
Diffstat (limited to 'ext/xsl/xsltprocessor.c')
-rw-r--r-- | ext/xsl/xsltprocessor.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/xsl/xsltprocessor.c b/ext/xsl/xsltprocessor.c index 67c90f501f..699475d1f2 100644 --- a/ext/xsl/xsltprocessor.c +++ b/ext/xsl/xsltprocessor.c @@ -794,7 +794,8 @@ PHP_FUNCTION(xsl_xsltprocessor_set_parameter) ALLOC_ZVAL(new_string); Z_ADDREF_PP(entry); - COPY_PZVAL_TO_ZVAL(*new_string, *entry); + ZVAL_COPY_VALUE(new_string, *entry); +//??? COPY_PZVAL_TO_ZVAL(*new_string, *entry); zend_hash_update(intern->parameter, string_key, string_key_len, &new_string, sizeof(zval*), NULL); zend_hash_move_forward(Z_ARRVAL_P(array_value)); |