Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:76896 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 86196 invoked from network); 27 Aug 2014 05:42:13 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 27 Aug 2014 05:42:13 -0000 Authentication-Results: pb1.pair.com header.from=tjerk.meesters@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=tjerk.meesters@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.220.53 as permitted sender) X-PHP-List-Original-Sender: tjerk.meesters@gmail.com X-Host-Fingerprint: 209.85.220.53 mail-pa0-f53.google.com Received: from [209.85.220.53] ([209.85.220.53:54228] helo=mail-pa0-f53.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id D1/00-20444-3BF6DF35 for ; Wed, 27 Aug 2014 01:42:12 -0400 Received: by mail-pa0-f53.google.com with SMTP id rd3so24441917pab.26 for ; Tue, 26 Aug 2014 22:42:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:content-type:content-transfer-encoding:subject:message-id:date :to:mime-version; bh=ZFeogx+7u/IBE8UNkIK+oB96ZVIDPR3BAPyxSmP1ofM=; b=DJAZ5U02WJF2uG2LYmfqbtNNdueHzZb4saHR1r+41PmHXWydVF77cypxJGWAanz8Rh K+dqDyoi1TgJT5BspV4zOvszPyx+VBe/6n0ol0eZLypYSO/dhi/ZHIZbBig8w6DCDG+e 8X61UCEYNOKkb0gVMN5TAL5ybOCh/m+nFTWALdh7Ox0jkxGC2BgCRLnh8pFTGDbZLepd wd0d5wE5C1hvaR0VFuveASDBz1oe0N8Sh/bB5Iu1egQoHbD3wsFFoUTRC1XGwLXadjCW a0Nes9PqIENdFd52P7Vm0N4V3jhGAoWTQ1Qzon7zcvPpMQJXDA9QLSaN1BUhhh/4zPQi skHQ== X-Received: by 10.67.22.37 with SMTP id hp5mr18199809pad.150.1409117704500; Tue, 26 Aug 2014 22:35:04 -0700 (PDT) Received: from [192.168.1.102] (bb121-7-198-24.singnet.com.sg. [121.7.198.24]) by mx.google.com with ESMTPSA id ju4sm5230951pbc.6.2014.08.26.22.35.02 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 26 Aug 2014 22:35:03 -0700 (PDT) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Message-ID: <62188C5D-C62B-493F-8CB1-9B48C5555131@gmail.com> Date: Wed, 27 Aug 2014 13:34:59 +0800 To: PHP Internals Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) X-Mailer: Apple Mail (2.1878.6) Subject: Re: zpp and zend_string From: tjerk.meesters@gmail.com (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?=