]> granicus.if.org Git - php/commitdiff
Remove unnecessary ARRAYLS_FETCH() calls
authorSascha Schumann <sas@php.net>
Sun, 12 Dec 1999 10:50:30 +0000 (10:50 +0000)
committerSascha Schumann <sas@php.net>
Sun, 12 Dec 1999 10:50:30 +0000 (10:50 +0000)
ext/standard/array.c

index 9c61e31dc346105f3abd2b9a3577fcf827175134..cec2d13a68abfa51331aa6f62543e6dc9c01acca 100644 (file)
@@ -1960,8 +1960,7 @@ int multisort_compare(const void *a, const void *b)
        int                       r;
        int                       result = 0;
        zval              temp;
-       ARRAYLS_FETCH();
-
+       
        r = 0;
        do {
                compare_function(&temp, *((zval **)ab[r]->pData), *((zval **)bb[r]->pData));
@@ -1982,7 +1981,6 @@ PHP_FUNCTION(multisort)
        int                             argc;
        int                             array_size;
        int                             i, k;
-       ARRAYLS_FETCH();
        
        /* Get the argument count and check it */
        argc = ARG_COUNT(ht);