1
0
mirror of https://github.com/php/php-src.git synced 2026-04-26 09:28:21 +02:00

Typo fixes.

This commit is contained in:
Ilia Alshanetsky
2003-01-15 14:05:41 +00:00
parent f704ac13a8
commit 475125ac25
+2 -2
View File
@@ -438,9 +438,9 @@ void java_call_function_handler(INTERNAL_FUNCTION_PARAMETERS, zend_property_refe
int arg_count = ZEND_NUM_ARGS();
jlong result = 0;
zval **arguments = (zval **) emalloc(sizeof(zval *)*arg_count);
zval ***arguments = (zval ***) emalloc(sizeof(zval *)*arg_count);
zend_get_parameters_ex(arg_count, arguments);
zend_get_parameters_array_ex(arg_count, arguments);
if (!JG(jenv)) jvm_create(TSRMLS_C);
if (!JG(jenv)) return;