1
0
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:
Sterling Hughes
2001-05-28 04:40:08 +00:00
parent 5bff2399dd
commit 3af89678ec

View File

@@ -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);