From: Anatol Belski Date: Tue, 14 Nov 2017 20:47:56 +0000 (+0100) Subject: Initialize jit global X-Git-Tag: php-7.3.0alpha1~1028^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=691a5a9c4ce1bd60edccecdaf6d03187fb5fcfb7;p=php Initialize jit global --- diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index b852a5fa18..d94b1b3faa 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -243,6 +243,7 @@ static PHP_GINIT_FUNCTION(pcre) /* {{{ */ pcre_globals->backtrack_limit = 0; pcre_globals->recursion_limit = 0; pcre_globals->error_code = PHP_PCRE_NO_ERROR; + pcre_globals->jit = 1; php_pcre_init_pcre2(1); }