Patch php-5.2.17.diff for Website problem Bug #68418
Patch version 2014-11-14 09:09 UTC
Return to Bug #68418 |
Download this patch
Patch Revisions:
Developer: php-bugs-2014@ryandesign.com
diff -ru museum.php.net/php-5.2.17/NEWS distfiles.macports.org/php-5.2.17/NEWS
--- museum.php.net/php-5.2.17/NEWS 2011-01-05 08:48:13.000000000 -0600
+++ distfiles.macports.org/php-5.2.17/NEWS 2011-01-06 17:01:19.000000000 -0600
@@ -1,7 +1,8 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
06 Jan 2010, PHP 5.2.17
-- Fixed Bug #53632 (infinite loop with x87 fpu). (Scott, Rasmus)
+- Fixed Bug #53632 (infinite loop with x87 fpu). (CVE-2010-4645) (Scott,
+ Rasmus)
16 Dec 2010, PHP 5.2.16
- Fixed bug #53517 (segfault in pgsql_stmt_execute() when postgres is down).
diff -ru museum.php.net/php-5.2.17/Zend/zend_strtod.c distfiles.macports.org/php-5.2.17/Zend/zend_strtod.c
--- museum.php.net/php-5.2.17/Zend/zend_strtod.c 2011-01-04 16:36:23.000000000 -0600
+++ distfiles.macports.org/php-5.2.17/Zend/zend_strtod.c 2011-01-06 16:48:20.000000000 -0600
@@ -89,7 +89,7 @@
* directly -- and assumed always to succeed.
*/
-/* $Id: zend_strtod.c 307095 2011-01-04 22:36:23Z scottmac $ */
+/* $Id: zend_strtod.c 307192 2011-01-06 22:48:20Z rasmus $ */
#include <zend_operators.h>
#include <zend_strtod.h>
@@ -164,6 +164,7 @@
#ifdef __vax__
#define VAX
+#undef IEEE_LITTLE_ENDIAN
#endif
#if defined(_MSC_VER)
@@ -2030,6 +2031,10 @@
return s0;
}
+/* F* VC6 */
+#if _MSC_VER <= 1300
+# pragma optimize( "", off )
+#endif
ZEND_API double zend_strtod (CONST char *s00, char **se)
{
int bb2, bb5, bbe, bd2, bd5, bbbits, bs2, c, dsign,
diff -ru museum.php.net/php-5.2.17/configure.in distfiles.macports.org/php-5.2.17/configure.in
--- museum.php.net/php-5.2.17/configure.in 2011-01-05 08:48:13.000000000 -0600
+++ distfiles.macports.org/php-5.2.17/configure.in 2011-01-06 17:01:19.000000000 -0600
@@ -1,4 +1,4 @@
-## $Id: configure.in 307125 2011-01-05 14:48:13Z iliaa $ -*- autoconf -*-
+## $Id: configure.in 307193 2011-01-06 23:01:19Z iliaa $ -*- autoconf -*-
dnl ## Process this file with autoconf to produce a configure script.
divert(1)
|