Commit:    e708dce6742dcc4c06aea63ae8929923ad896dbf
Author:    Dmitry Stogov <dmi...@zend.com>         Mon, 18 Feb 2013 12:42:56 
+0400
Parents:   d9ba147e5c460dcc9d8f6ed2330c816e748a98a7
Branches:  PHP-5.5 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=e708dce6742dcc4c06aea63ae8929923ad896dbf

Log:
Lenght is unsigned

Changed paths:
  M  ZendAccelerator.h


Diff:
diff --git a/ZendAccelerator.h b/ZendAccelerator.h
index 36f1b54..230ee86 100644
--- a/ZendAccelerator.h
+++ b/ZendAccelerator.h
@@ -165,7 +165,7 @@ typedef time_t accel_time_t;
 typedef struct _zend_persistent_script {
        ulong          hash_value;
        char          *full_path;              /* full real path with resolved 
symlinks */
-       int            full_path_len;
+       unsigned int   full_path_len;
        zend_op_array  main_op_array;
        HashTable      function_table;
        HashTable      class_table;


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to