From a12e7affd7053f22f66ee2b6b1f00b6b8f1ca540 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Mon, 14 Dec 2020 15:26:11 +0300 Subject: [PATCH] Fixed bug #80506 (Immediate SIGSEGV upon ini_set("opcache.jit_debug", 1)) --- ext/opcache/ZendAccelerator.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ext/opcache/ZendAccelerator.c b/ext/opcache/ZendAccelerator.c index 4fbc60bd74..5c7f31b487 100644 --- a/ext/opcache/ZendAccelerator.c +++ b/ext/opcache/ZendAccelerator.c @@ -3058,6 +3058,8 @@ static zend_result accel_post_startup(void) zend_accel_error(ACCEL_LOG_FATAL, "opcache.file_cache_only is set without a proper setting of opcache.file_cache"); return SUCCESS; } else { + JIT_G(enabled) = 0; + JIT_G(on) = 0; accel_shared_globals = calloc(1, sizeof(zend_accel_shared_globals)); /* Init auto-global strings */ -- 2.40.0