php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Return to Bug #62313
Patch 62313.patch revision 2012-06-27 17:35 UTC by ab@php.net
revision 2012-06-15 15:52 UTC by ab@php.net
revision 2012-06-15 09:38 UTC by ab@php.net

Patch 62313.patch for Reproducible crash Bug #62313

Patch version 2012-06-15 15:52 UTC

Return to Bug #62313 | Download this patch
This patch renders other patches obsolete

Obsolete patches:

Patch Revisions:

Developer: ab@php.net

--- php-src-PHP-5.4-a18cede.old.1/Zend/zend_API.c	Fri Jun 15 16:15:50 2012
+++ php-src-PHP-5.4-a18cede.old.1/Zend/zend_API.c.new.0	Fri Jun 15 16:15:32 2012
@@ -2545,6 +2545,9 @@
 	ZEND_FE_END
 };
 
+#ifdef PHP_WIN32
+# pragma optimize("", off)
+#endif
 ZEND_API int zend_disable_class(char *class_name, uint class_name_length TSRMLS_DC) /* {{{ */
 {
 	zend_class_entry disabled_class;
@@ -2559,6 +2562,9 @@
 	zend_register_internal_class(&disabled_class TSRMLS_CC);
 	return SUCCESS;
 }
+#ifdef PHP_WIN32
+# pragma optimize("", on)
+#endif
 /* }}} */
 
 static int zend_is_callable_check_class(const char *name, int name_len, zend_fcall_info_cache *fcc, int *strict_class, char **error TSRMLS_DC) /* {{{ */
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 11:01:33 2024 UTC