felipe                                   Wed, 22 Sep 2010 00:11:34 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=303653

Log:
- Fixed EG(saved_fpu_cw) initialization

Changed paths:
    U   php/php-src/trunk/Zend/zend.c

Modified: php/php-src/trunk/Zend/zend.c
===================================================================
--- php/php-src/trunk/Zend/zend.c       2010-09-21 23:40:39 UTC (rev 303652)
+++ php/php-src/trunk/Zend/zend.c       2010-09-22 00:11:34 UTC (rev 303653)
@@ -547,7 +547,9 @@
        EG(current_execute_data) = NULL;
        EG(current_module) = NULL;
        EG(exit_status) = 0;
-       EG(saved_fpu_cw) = NULL;
+#if XPFPA_HAVE_CW
+       EG(saved_fpu_cw) = 0;
+#endif
        EG(saved_fpu_cw_ptr) = NULL;
        EG(active) = 0;
 }

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to