mirror of
https://github.com/php/php-src.git
synced 2026-04-11 01:53:36 +02:00
compile goood, compile error baaad.
This commit is contained in:
@@ -225,7 +225,7 @@ extern void xslt_call_function(char *name,
|
||||
/* Call the function */
|
||||
error = call_user_function_ex(EG(function_table),
|
||||
NULL, function,
|
||||
*retval, argc, argv, O, NULL);
|
||||
retval, argc, argv, O, NULL);
|
||||
if (error == FAILURE) {
|
||||
php_error(E_WARNING, "Cannot call the %s handler: %s",
|
||||
name, Z_STRVAL_P(function));
|
||||
@@ -234,7 +234,7 @@ extern void xslt_call_function(char *name,
|
||||
/* Cleanup arguments */
|
||||
for (idx = 0; idx < argc; idx++) {
|
||||
/* Decrease refcount and free if refcount is <= 0 */
|
||||
zval_ptr_dtor(&argv[idx]);
|
||||
zval_ptr_dtor(argv[idx]);
|
||||
}
|
||||
|
||||
efree(argv);
|
||||
|
||||
Reference in New Issue
Block a user