Re: [PHP-DEV] Re: zpp and zend_string

2014-08-27 Thread Andrea Faulds
On 27 Aug 2014, at 06:34, Tjerk Meesters wrote: > With the recent merge of int64 the `zend_string` type now uses `size_t` to > store its length, but ZPP (and friends) still use `int *` to store the parsed > string lengths. > > http://lxr.php.net/xref/PHP_TRUNK/Zend/zend_API.c#519 > > This lo

Re: [PHP-DEV] Re: zpp and zend_string

2014-08-27 Thread Pierre Joye
On Wed, Aug 27, 2014 at 8:51 AM, Anatol Belski wrote: > Hi Tjerk, > > On Wed, August 27, 2014 07:34, Tjerk Meesters wrote: >> Hi internals, >> >> >> With the recent merge of int64 the `zend_string` type now uses `size_t` >> to store its length, but ZPP (and friends) still use `int *` to store the

Re: [PHP-DEV] Re: zpp and zend_string

2014-08-26 Thread Anatol Belski
Hi Tjerk, On Wed, August 27, 2014 07:34, Tjerk Meesters wrote: > Hi internals, > > > With the recent merge of int64 the `zend_string` type now uses `size_t` > to store its length, but ZPP (and friends) still use `int *` to store the > parsed string lengths. > > http://lxr.php.net/xref/PHP_TRUNK/Ze

[PHP-DEV] Re: zpp and zend_string

2014-08-26 Thread Tjerk Meesters
Hi internals, With the recent merge of int64 the `zend_string` type now uses `size_t` to store its length, but ZPP (and friends) still use `int *` to store the parsed string lengths. http://lxr.php.net/xref/PHP_TRUNK/Zend/zend_API.c#519 This look like an oversight. Will this be fixed as well?