tony2001 Mon Jan 16 23:04:23 2006 UTC Modified files: (Branch: PHP_5_1) /php-src NEWS /php-src/ext/hash php_hash.h Log: MFH: fix #36038 (ext/hash compile failure on Mac OSX) http://cvs.php.net/viewcvs.cgi/php-src/NEWS?r1=1.2027.2.359&r2=1.2027.2.360&diff_format=u Index: php-src/NEWS diff -u php-src/NEWS:1.2027.2.359 php-src/NEWS:1.2027.2.360 --- php-src/NEWS:1.2027.2.359 Mon Jan 16 19:48:23 2006 +++ php-src/NEWS Mon Jan 16 23:04:23 2006 @@ -5,6 +5,7 @@ - Added "consumed" stream filter. (Marcus) - Added new mysqli constants for BIT and NEW_DECIMAL field types: MYSQLI_TYPE_NEWDECIMAL and MYSQLI_TYPE_BIT. FR #36007. (Georg) +- Fixed bug #36038 (ext/hash compile failure on Mac OSX). (Tony) - Fixed bug #36016 (realpath cache memleaks). (Dmitry, Nuno) - Fixed bug #36011 (Strict errormsg wrong for call_user_func() and the likes). (Marcus) http://cvs.php.net/viewcvs.cgi/php-src/ext/hash/php_hash.h?r1=1.13.2.6&r2=1.13.2.7&diff_format=u Index: php-src/ext/hash/php_hash.h diff -u php-src/ext/hash/php_hash.h:1.13.2.6 php-src/ext/hash/php_hash.h:1.13.2.7 --- php-src/ext/hash/php_hash.h:1.13.2.6 Sun Jan 1 12:50:07 2006 +++ php-src/ext/hash/php_hash.h Mon Jan 16 23:04:23 2006 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: php_hash.h,v 1.13.2.6 2006/01/01 12:50:07 sniper Exp $ */ +/* $Id: php_hash.h,v 1.13.2.7 2006/01/16 23:04:23 tony2001 Exp $ */ #ifndef PHP_HASH_H #define PHP_HASH_H @@ -122,7 +122,7 @@ static inline void php_hash_bin2hex(char *out, const unsigned char *in, int in_len) { - static const char hexits[16] = "0123456789abcdef"; + static const char hexits[17] = "0123456789abcdef"; int i; for(i = 0; i < in_len; i++) {
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php