php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Return to Bug #81689
Patch ppc64le-81689.patch revision 2021-12-03 14:56 UTC by apostnikov at gmail dot com
revision 2021-12-03 14:56 UTC by apostnikov at gmail dot com

Patch ppc64le-81689.patch for Scripting Engine problem Bug #81689

Patch version 2021-12-03 14:56 UTC

Return to Bug #81689 | Download this patch
Patch Revisions:

Developer: apostnikov@gmail.com

diff --git a/Zend/zend_fibers.c b/Zend/zend_fibers.c
index 92ae9b8837..0aa37a30b3 100644
--- a/Zend/zend_fibers.c
+++ b/Zend/zend_fibers.c
@@ -443,7 +443,7 @@ static ZEND_STACK_ALIGNED void zend_fiber_execute(zend_fiber_transfer *transfer)
 	zend_fiber *fiber = EG(active_fiber);
 
 	/* Determine the current error_reporting ini setting. */
-	zend_long error_reporting = INI_INT("error_reporting");
+	int error_reporting = INI_INT("error_reporting");
 	/* If error_reporting is 0 and not explicitly set to 0, INI_STR returns a null pointer. */
 	if (!error_reporting && !INI_STR("error_reporting")) {
 		error_reporting = E_ALL;
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 07:01:31 2024 UTC