]> granicus.if.org Git - php/commitdiff
String length in parse_parameters should be int
authorSara Golemon <pollita@php.net>
Thu, 17 Jun 2004 18:23:47 +0000 (18:23 +0000)
committerSara Golemon <pollita@php.net>
Thu, 17 Jun 2004 18:23:47 +0000 (18:23 +0000)
Zend/zend_builtin_functions.c

index 20add93b7f2bc4349e2110d13b5738431fe5d0e6..02f5d49e7a54d96073a7221b0c269e1368498deb 100644 (file)
@@ -805,7 +805,7 @@ ZEND_FUNCTION(class_exists)
 {
        char *class_name, *lc_name;
        zend_class_entry **ce;
-       long class_name_len;
+       int class_name_len;
        zend_bool autoload = 1;
        int found;