On Fri, 12 Aug 2011, Xinchen Hui wrote:
> laruence Fri, 12 Aug 2011 07:47:03 +
>
> Revision: http://svn.php.net/viewvc?view=revision&revision=314808
>
> Log:
> Omitted GCC warning "comparison is always false"
I don't get this commit message, as you seem to ha
Hi Derick:
-smart_str_append_long(buf,
(long)Z_OBJCE_P(struc)->name_length);
+ smart_str_append_long(buf,
(int)Z_OBJCE_P(struc)->name_length);
this is the commit message try to description,
I was plan t
hirokawa Sun, 14 Aug 2011 14:09:11 +
Revision: http://svn.php.net/viewvc?view=revision&revision=314897
Log:
added gb18030 encoding to mbstring/libmbfl.~
Changed paths:
U php/php-src/trunk/ext/mbstring/config.m4
U php/php-src/trunk/ext/mbstring/conf
hirokawa Sun, 14 Aug 2011 14:09:54 +
Revision: http://svn.php.net/viewvc?view=revision&revision=314898
Log:
NEWS update for mbstring.
Changed paths:
U php/php-src/trunk/NEWS
Modified: php/php-src/trunk/NEWS
==
hirokawa Sun, 14 Aug 2011 14:11:29 +
Revision: http://svn.php.net/viewvc?view=revision&revision=314899
Log:
MFH: added gb18030 encoding to mbstring/libmbfl.~
Changed paths:
U php/php-src/branches/PHP_5_4/ext/mbstring/config.m4
U php/php-src/branche
hirokawa Sun, 14 Aug 2011 14:11:49 +
Revision: http://svn.php.net/viewvc?view=revision&revision=314900
Log:
MFH: NEWS update for mbstring.
Changed paths:
U php/php-src/branches/PHP_5_4/NEWS
Modified: php/php-src/branches/PHP_5_4/NEWS
===
On 8/14/11 4:25 AM, Derick Rethans wrote:
On Fri, 12 Aug 2011, Xinchen Hui wrote:
laruence Fri, 12 Aug 2011 07:47:03 +
Revision: http://svn.php.net/viewvc?view=revision&revision=314808
Log:
Omitted GCC warning "comparison is always false"
I don't get this
Hi:
"smart_str_append_long(buf, (long)Z_OBJCE_P(struc)->name_length);"
if you expand the macro, then it will result a :
if (num < 0) { \
smart_str_print_unsigned4((buf), -(num), vartype, (result));\
*--(result) = '-';
Hi:
also you may wondering that this change could bring in a issue,
that is the class name length could not greater than 2G, or it will
considered as a negative length,
and yes, we have disscussed this in IRC, and the conclusion is ,
if a class name length greater than 2G, there must be some m