diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2011-01-06 22:48:20 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2011-01-06 22:48:20 +0000 |
commit | f3643fde6b645d2e7c8b86f4271e74263f98701d (patch) | |
tree | 2dfab12c13698401ff217154c6d59327484e1ab7 | |
parent | 6e6ad948826b395a11a47a4cdc6106e6d8b0da82 (diff) | |
download | php-git-f3643fde6b645d2e7c8b86f4271e74263f98701d.tar.gz |
Fix bug #53682
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | Zend/zend_strtod.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -1,6 +1,7 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ??? ????, PHP 5.2.18 +- Fixed bug #53682 (Fix compile on the VAX). (Rasmus, jklos) 06 Jan 2010, PHP 5.2.17 - Fixed Bug #53632 (infinite loop with x87 fpu). (CVE-2010-4645) (Scott, diff --git a/Zend/zend_strtod.c b/Zend/zend_strtod.c index 04d92d6c38..6ffefba553 100644 --- a/Zend/zend_strtod.c +++ b/Zend/zend_strtod.c @@ -164,6 +164,7 @@ typedef unsigned long int uint32_t; #ifdef __vax__ #define VAX +#undef IEEE_LITTLE_ENDIAN #endif #if defined(_MSC_VER) |