I'm using EL6 with all updates applied and getting bit by a PHP5 bug that was fixed a year and a half ago... https://bugs.php.net/bug.php?id=52534 EL6 ships with php 5.3.3, which was released prior to the bug fix. What are the chances that this fixed bug can be reported/fixed upstream at the prominent North American Linux Vendor? Here's sample code that demonstrates the problem: function CheckBug52534(){ $check = array(1 => 'a', -1 => 'b'); $str = var_export($check, true); $str = "\$a=$str;"; eval($str); if (!isset($a[-1])) return true; } echo (Checkbug52534()) ? "has it" : 'not found'; -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean.
On 4.1.2012 19:09, Lists wrote:> I'm using EL6 with all updates applied and getting bit by a PHP5 bug > that was fixed a year and a half ago... > > https://bugs.php.net/bug.php?id=52534 > > EL6 ships with php 5.3.3, which was released prior to the bug fix. What > are the chances that this fixed bug can be reported/fixed upstream at > the prominent North American Linux Vendor?I found the following existing bugzillas. https://bugzilla.redhat.com/show_bug.cgi?id=695251 https://bugzilla.redhat.com/show_bug.cgi?id=700724 However, both seems for 5 only. If you think this applies to 6 too, consider filing a bug request yourself. -- Kind Regards, Markus Falb -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 307 bytes Desc: OpenPGP digital signature URL: <http://lists.centos.org/pipermail/centos/attachments/20120104/bd66cf3d/attachment.sig>
> I found the following existing bugzillas.https://bugzilla.redhat.com/show_bug.cgi?id=695251 https://bugzilla.redhat.com > /show_bug.cgi?id=700724 However, both seems for 5 only. If you think this applies to 6 too, consider filing a bug request yourself. Thanks, I did. https://bugzilla.redhat.com/show_bug.cgi?id=771738 -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean.