]> granicus.if.org Git - php/commitdiff
Fixing my zts fix.
authorAndrey Hristov <andrey@php.net>
Thu, 12 Sep 2002 08:20:37 +0000 (08:20 +0000)
committerAndrey Hristov <andrey@php.net>
Thu, 12 Sep 2002 08:20:37 +0000 (08:20 +0000)
#Sorry Edin

ext/standard/array.c

index 2685992c67eba682e7eae24033c1eb98cd5d2dc2..046d65621f14735f8ace15e4d3d12b81fe397dd4 100644 (file)
@@ -2624,7 +2624,7 @@ out:
 }
 /* }}} */
 
-static void php_array_diff(INTERNAL_FUNCTION_PARAMETERS, int behavior TSRMLS_DC)
+static void php_array_diff(INTERNAL_FUNCTION_PARAMETERS, int behavior)
 {
        zval ***args = NULL;
        HashTable *hash;
@@ -2759,7 +2759,7 @@ out:
    Returns the entries of arr1 that have values which are not present in any of the others arguments */
 PHP_FUNCTION(array_diff)
 {
-       php_array_diff(INTERNAL_FUNCTION_PARAM_PASSTHRU, DIFF_NORMAL TSRMLS_CC);
+       php_array_diff(INTERNAL_FUNCTION_PARAM_PASSTHRU, DIFF_NORMAL);
 }
 /* }}} */
 
@@ -2767,7 +2767,7 @@ PHP_FUNCTION(array_diff)
    Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal */
 PHP_FUNCTION(array_diff_assoc)
 {
-       php_array_diff(INTERNAL_FUNCTION_PARAM_PASSTHRU, DIFF_ASSOC TSRMLS_CC);
+       php_array_diff(INTERNAL_FUNCTION_PARAM_PASSTHRU, DIFF_ASSOC);
 }
 /* }}} */